Home › Forums › WoodMart support forum › Order Tab Product Order Tab Product This topic has 1 reply, 2 voices, and was last updated 3 years, 12 months ago by Luke Nielsen. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts September 21, 2021 at 9:39 am #320004 [email protected]Participant Hello, I’d like to know the way to order the information tabs in the product page. I send attached image where you can see that we have “información técnica” in the last position and I want to put this tab in the second position after “description. Thanks Attachments:You must be logged in to view attached files. September 21, 2021 at 3:03 pm #320093 Luke NielsenKeymaster Hello, In order to move your tab on the second place, please try to add this code to the functions.php file in your child theme if ( ! function_exists('wd_single_move_shipping_tab') ) { function wd_single_move_shipping_tab( $tabs ) { $tabs['wd_additional_tab']['priority'] = 25; return $tabs; } add_filter( 'woocommerce_product_tabs', 'wd_single_move_shipping_tab', 98 ); } Kind Regards Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to create new topics. Login / Register