A simple, powerful and independent e-commerce platform.
Sell anything with ease.

Remove meta info from the product page

This code removes the meta info from the product page.

		/**
 * Remove meta information from product page
 */

add_action('init', 'cc_remove_meta_info');

function cc_remove_meta_info() {

  remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40);

}
	
View Raw Code ID: 91126