Last active
December 26, 2019 16:11
-
-
Save full-stack-king/8adfda8b05357f4d88df15b8b3e27b0a to your computer and use it in GitHub Desktop.
Remove or Hide product meta (SKU, categories and tags) from WooCommerce single product pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Add this code at the bottom of your theme's function.php or in your plugin code */ | |
/* Remove product meta */ | |
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment