Support Forum Forums Mixxcazt – Creative Multipurpose WooCommerce Theme Looking to change some items over product page in maxxicazt Reply To: Looking to change some items over product page in maxxicazt

#4380

1. Compare: I disabled this plugin, please recheck.

2. SKU and category: You need to override wp-content/plugins/woocommerce/templates/single-product/meta.php file into child-theme
=> wp-content/themes/mixxcazt-child/woocommerce/single-product/meta.php

then remove Category and Tag and SKU

3. Edit button add to cart:
use this code:

remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart');
add_action('woocommerce_single_product_summary', 'mixxcazt_template_single_add_to_cart', 30);
function mixxcazt_template_single_add_to_cart(){
//your code;
}