No product tabs on mobile
-
All tabs had contents but they did not show on the mobile version. And could you tell me how to reorder the specification tab after description?
Attachments:
You must be
logged in to view attached files.
Hello,
In this case, is there any chance that you could give me access to the dashboard area so I can have a look at the settings on your website, please?
Kind Regards
How to let you access my dashboard??
You can post it here, using the Private content field. It will be visible to our staff only.
Hello,
Your website is on maintenance mode: https://prnt.sc/CJ3-35B9jtPF
So in order to check the issue, could you please send admin access via the Private content field?
I await your response.
Kind Regards
Hello,
You have a custom code that hides the tabs on mobile devices: https://take.ms/4UejW
So make sure that you haven’t defined such code in Theme Settings -> Custom CSS, otherwise, it could come from some third-party plugins.
Kind Regards
I removed it now but it is still hidden.
Hello,
Try to clear the website/browser cache and then recheck the issue, otherwise please send me access to the admin dashboard so I will investigate it from your side.
Kind Regards
It’s solved, thank you, and what about reordering the tabs on the product page?
Hello,
Please enter the below code into the fuctions.php file in your child theme, clear the cache and recheck the issue.
/**
* Reorder product data tabs
*/
add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
function woo_reorder_tabs( $tabs ) {
$tabs['wd_custom_tab']['priority'] = 3;
return $tabs;
}
Kind Regards
Where is fuctions.php? Thank you.
Hello,
You can find it in your child theme via Dashboard -> Appearance -> Theme file editor: https://take.ms/o0IQ9
Feel free to reach out to me anytime when you have anything more to say.
Kind Regards