Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created May 10, 2016 09:13
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mikejolley/c75083db7f6110cbdbe4808e3af36fe3 to your computer and use it in GitHub Desktop.
Save mikejolley/c75083db7f6110cbdbe4808e3af36fe3 to your computer and use it in GitHub Desktop.
WooCommerce - Remove product data tabs and hook content in sequence instead
<?php // Do not include this if already open!
/**
* Remove existing tabs from single product pages.
*/
function remove_woocommerce_product_tabs( $tabs ) {
unset( $tabs['description'] );
unset( $tabs['reviews'] );
unset( $tabs['additional_information'] );
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'remove_woocommerce_product_tabs', 98 );
/**
* Hook in each tabs callback function after single content.
*/
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_product_description_tab' );
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_product_additional_information_tab' );
add_action( 'woocommerce_after_single_product_summary', 'comments_template' );
@Ondrejicek
Copy link

Thank you. But is it possible to add the description/additional information/reviews section only if non-empty?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment