Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Ultimate › Description and Description tab are Missing from Product Pages, Rearrange tabs
Tagged: description, product page, tabs
- This topic has 2 replies, 2 voices, and was last updated 4 years, 11 months ago by Sarmistha Chakraborty.
- AuthorPosts
- December 20, 2019 at 8:40 am #98137PhoenixParticipant
My product page does not display the descriptions. It displays the short description.
There is no description tab either.Is there a way to enable this? The description and the description tab were both working until I installed this plugin.
I would also like to rearrange the tabs on the product page. Is there a way to do this?
Thanks!
- December 20, 2019 at 8:47 am #98138PhoenixParticipant
Oh! I figured out the description, a silly error on my part, but is there a way to rearrange tabs?
- December 22, 2019 at 10:33 am #98458Sarmistha ChakrabortyMember
Hello,
add_filter( 'woocommerce_product_tabs', 'reordered_tabs', 98 ); function reordered_tabs( $tabs ) { $tabs['description']['priority'] = 10; //change the number as per order-number of tabs $tabs['reviews']['priority'] = 15; return $tabs; }
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Thanks.
- AuthorPosts
- You must be logged in to reply to this topic.