Answers for "woocommerce disable product page"

PHP
0

woocommerce remove category from product page

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
Posted by: Guest on September-08-2021
0

woocommerce disable links on specific product

apply_filters( 'woocommerce_cart_item_name', sprintf( '%s', $_product->get_title() ), $cart_item, $cart_item_key );
Posted by: Guest on August-17-2020
0

woocommerce disable links on specific product

apply_filters( 'woocommerce_cart_item_name', sprintf( '<a href="%s">%s</a>', $_product->get_permalink(), $_product->get_title() ), $cart_item, $cart_item_key );
Posted by: Guest on August-17-2020

Code answers related to "woocommerce disable product page"

Browse Popular Code Answers by Language