Answers for "how to edit product details page in woocommerce"

3

is product page woocommerce

if( is_product() ) {
	// do something
} else {
 
}
Posted by: Guest on October-14-2021
0

edit woocommerce product page childthemee

function mytheme_add_woocommerce_support() {
add_theme_support( 'woocommerce' );
}
add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );
Posted by: Guest on November-30-2020

Code answers related to "how to edit product details page in woocommerce"

Browse Popular Code Answers by Language