Skip to content

Instantly share code, notes, and snippets.

@kloon
Created January 24, 2014 05:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save kloon/8592576 to your computer and use it in GitHub Desktop.
Save kloon/8592576 to your computer and use it in GitHub Desktop.
WooCommerce Remove Product Description from single product pages
<?php
// remove product description from single product pages
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_filter( 'woocommerce_product_tabs', 'wc_remove_description_tab', 11, 1 );
function wc_remove_description_tab( $tabs ) {
if ( isset( $tabs['description'] ) ) {
unset( $tabs['description'] );
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment