Skip to content

Instantly share code, notes, and snippets.

@akther80
Last active March 20, 2019 19:28
Show Gist options
  • Save akther80/85221a1c457cc26c0bc3119974e497dd to your computer and use it in GitHub Desktop.
Save akther80/85221a1c457cc26c0bc3119974e497dd to your computer and use it in GitHub Desktop.
Electro v2 - Remove product meta from single product description
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