Skip to content

Instantly share code, notes, and snippets.

@tittee
Forked from mikejolley/functions.php
Created October 27, 2018 17:00
Show Gist options
  • Save tittee/9c2a1cf8476c1e70dc7584924ec49fec to your computer and use it in GitHub Desktop.
Save tittee/9c2a1cf8476c1e70dc7584924ec49fec 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' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment