Answers for "woocommerce product list according to category"

1

is product category woocommerce

if( is_product_category() ) {
	// yay, we are on a product category page!
} else {
 
}
Posted by: Guest on October-30-2020
0

woocommerce add button to product list

// On functions.php
// Add to cart text on product archives (Collection) page
add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' );  
function woocommerce_custom_product_add_to_cart_text() {
    return __( 'Comprar', 'woocommerce' );
}
Posted by: Guest on November-08-2021

Code answers related to "woocommerce product list according to category"

Browse Popular Code Answers by Language