Hi @ivanpm
Is this normal?
Yes, it is. We are following the WC standard and so it does the same, display title under description.
To be specific, you said Description title shows only on the tab name but not in the contents, while this may be true for the theme you are using.
Can you name your active theme?
However if I add a global tab named Details, the name appears twice, once on the tab name and also again inside the tab contents.
You can pretty much do anything to change the output of title/tab contents via the filter hook.
Quick solution to hide tab title in tab content for all tabs
add_filter('wptp_tab_object', function( $product_tab ) {
unset( $product_tab->title );
return $product_tab;
});
Note: Make sure you update the plugin to latest version (1.0.3). And this applies to the tabs that we manage.
Don’t know how to send you a screenshot.
Upload image to some free service like dropbox/google drive and share the link here.
Thanks
-
This reply was modified 8 years ago by
Wooninjas.
-
This reply was modified 8 years ago by
Wooninjas.
-
This reply was modified 8 years ago by
Wooninjas.