Home › Forums › WoodMart support forum › Tabs order Tabs order This topic has 3 replies, 2 voices, and was last updated 3 years, 1 month ago by Luke Nielsen. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts November 9, 2021 at 12:40 pm #330495 colorlinkParticipant greetings so i have the following tabs https://prnt.sc/1yvx1vb number 2 is made using the PRODUCT TAB OPTIONS number 1 is made using theme option ADDITIONAL TABS I need number 2 to show above number 1 ( exchange order ) how to do so? thanks November 9, 2021 at 1:42 pm #330523 Luke NielsenKeymaster Hello, Please send us the URL to your product with tabs like on your attached screenshot. I will do my best to help you. Kind Regards November 9, 2021 at 6:57 pm #330576 colorlinkParticipant i just received the following email and product URL provided below ( its the only product I have anyway) November 10, 2021 at 8:17 am #330673 Luke NielsenKeymaster Hello, To be able to change the order of the tabs, you need to add this code to the functions.php file in your child theme. if ( ! function_exists('wd_reorder_tabs') ) { function wd_reorder_tabs( $tabs ) { $tabs['wd_custom_tab']['priority'] = 10; return $tabs; } add_filter( 'woocommerce_product_tabs', 'wd_reorder_tabs', 98 ); } Kind Regards Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to create new topics. Login / Register