Archived topic
Remove woocommerce support from the theme
3 replies · Started by Deepak on September 10, 2020
Viewing posts 1–4 of 4
Hello Team,
I do not use Woocommerce so I would like to comment/remove this entry
add_theme_support( 'woocommerce' );
from functions.php
I can do that in the parent theme but that will change with every update.
How can I achieve this using child theme?
Regards
Deepak
Hi there,
Add this PHP snippet to your site:
function remove_woocommerce_support() {
remove_theme_support( 'woocommerce' );
}
add_action( 'wp', 'remove_woocommerce_suppor', 100 );
Thanks David :)
You're welcome
This archived topic is closed to new replies.