Hi @mohdaljaraba. If I’m understanding you correctly, you’d like to remove one of the tabs on your product pages. Is that correct? You can do that by using the code outlined here: https://docs.woocommerce.com/document/editing-product-data-tabs/
Or is that image showing that all the tabs have been combined into a single page, but you’d like one of them to be collapsed still? If that’s the case, it’s something that you’d need to figure out with your theme, as that is beyond the scope of WooCommerce’s normal functionality.
@apmwebdev Yes the 2nd answer i contact the theme developer and they told its about wc not they !
best regards
-
This reply was modified 5 years, 8 months ago by
mohdaljaraba.
Hi there,
By default, you should be able to switch back and forth between the tabs — you can see this if you temporarily switch back to the default Storefront theme:

Link to image: https://d.pr/i/hlpZIv
If you wanted to completely remove the Additional Information tab, you can do that by using the code in the doc that @apmwebdev sent:
https://docs.woocommerce.com/document/editing-product-data-tabs/#removing-tabs
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs['additional_information'] ); // Remove the additional information tab
return $tabs;
}
However, keeping two of them expanded the way your theme is doing, and making one collapsible would require more than just a PHP snippet like we could provide here. If you need assistance with coding or custom development, we recommend reaching out to a developer from one of the services at https://woocommerce.com/customizations/
@kellymetal @apmwebdev and its possible to add 2 separate tabs in single product for example description information together and review and an additional tab together , if no its possible to add 2 tabs under short description ?extra information when kind of this https://prnt.sc/ulvryv
Hi @mohdaljaraba. Yes, any of those things are possible, but all of them would require customizations or third party plugins. Per our support policy, customizations are outside the scope of the support we can offer, but we have a customizations page with resources for contacting a developer for help. You can also ask about this on the WooCommerce Slack Community or WooCommerce FB group which are great places for customization questions like this.
We haven’t heard back from you in a while, so I’m going to mark this as resolved. Feel free to start a new thread if you have any further questions!