Last active
March 20, 2019 19:28
-
-
Save akther80/85221a1c457cc26c0bc3119974e497dd to your computer and use it in GitHub Desktop.
Electro v2 - Remove product meta from single product description
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
if ( ! function_exists( 'electro_product_description_tab' ) ) { | |
function electro_product_description_tab() { | |
echo '<div class="electro-description clearfix">'; | |
wc_get_template( 'single-product/tabs/description.php' ); | |
echo '</div>'; | |
} | |
} | |
if ( ! function_exists( 'electro_product_specification_tab' ) ) { | |
function electro_product_specification_tab() { | |
electro_get_template( 'shop/single-product/tabs/specifications.php' ); | |
woocommerce_template_single_meta(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment