Hello!
My product page tab is arranged in the ff:
1. Short Description
2. Additional Information
3. Reviews
I'd like to put Additional Information Tab first before Short Description and Reviews.
Thank you so much in advance!
Hello!
My product page tab is arranged in the ff:
1. Short Description
2. Additional Information
3. Reviews
I'd like to put Additional Information Tab first before Short Description and Reviews.
Thank you so much in advance!
I was also wanting to ask about this. The page used to open with Additional Information on view but now it opens on Short Description tab. This is duplicate information becausein my case because this visible at the top of the page as 'Hero Text'. I'm not aware of changing anything and think it might have happened with an upgrade.
Thank You
Hi lishechen,
You can move the Short Description tab to the back by opening woocommerce-config>config.php and searching for:
//optional short description Tab
add_action('woocommerce_product_tabs', 'avia_woocommerce_short_description');
add_action('woocommerce_product_tab_panels', 'avia_woocommerce_short_description_panel');
Replace it with:
//optional short description Tab
add_action('woocommerce_product_tabs', 'avia_woocommerce_short_description', 100);
add_action('woocommerce_product_tab_panels', 'avia_woocommerce_short_description_panel', 100);
@KingConga - If you don't want the short description, remove the content from the Product Short Description box at the bottom of your product visual editor and that will cause it not to appear.
Regards,
Devin
You must log in to post.