Home › Forums › WoodMart support forum › Add another Additional tab › Reply To: Add another Additional tab
April 5, 2019 at 4:14 pm
#117234
rifatspir
Participant
Thanks for reply 🙂
Actually, I wanted to mean how to add another additional tab that I can add more global tab.
I got the below code in woocommerce and it solved my problem. I hope it will help other users who want to add more global tab with short-code.
/**
* Add a custom product data tab
*/
add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' );
function woo_new_product_tab( $tabs ) {
// Adds the new tab
$tabs['test_tab'] = array(
'title' => __( 'Change tab title here', 'woocommerce' ),
'priority' => 60,
'callback' => 'woo_new_product_tab_content'
);
return $tabs;
}
function woo_new_product_tab_content() {
// The new tab content
echo '<h2>Tab Title/h2>';
echo do_shortcode( '[html_block id="1234"]' );