skip to Main Content

Move product meta to the description tab in WooCommerce

How to move the product meta to the beginning of the product description tab? I try: remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 ); add_action( 'woocommerce_product_tabs_description', 'woocommerce_template_single_meta', 10 ); Remove works, but add_action() doesn't.

VIEW QUESTION

Sorting products by sale – woocommerce

I am using the following code in my function.php of my wordpress theme. And it sorts and display only the single products, not sorting/listing the variable products which are on discount/sale. add_filter( 'woocommerce_get_catalog_ordering_args', 'wcs_get_catalog_ordering_args' ); function wcs_get_catalog_ordering_args( $args ) {…

VIEW QUESTION
Back To Top
Search