This is how to remve the “product description” heading from your WooCommerce single product page.
No thanks to this thread, which seemed to help the poster, but nobody else. Doesn’t make sense to me.
So here’s how it’s really done.
Find description.php which is found in wp-content/plugins/woocommerce/templates/single-product/tabs/
In description.php you will delete:
<h2>< ?php echo $heading; ?></h2>
From the code:
< ?php
/**
* Description Tab
*/
global $woocommerce, $post;
if ( $post->post_content ) : ?>
<div class="panel entry-content" id="tab-description">
< ?php $heading = apply_filters('woocommerce_product_description_heading', __('Product Description', 'woocommerce')); ?>
<h2>< ?php echo $heading; ?></h2>
< ?php the_content(); ?>
</div>
< ?php endif; ?>
Then save, and overwrite the file on your server.
Warning! Be sure to either remember how you did this, bookmark this page, make a backup of the file, or all of the above, because as soon as you upgrade your woocommerce plugin next time an update comes out, this will be reset.


