Review tab first with Yotpo
-
Hi
I am trying to make my WooCoommerce tab Review be first instead of the description tab.
I used the code below that works when the Yotpo plugin is disabled`function reorder_tabs_product_page( $tabs ) {
$tabs[‘description’][‘priority’] = 15;
$tabs[‘reviews’][‘priority’] = 5;return $tabs;
}
add_filter( ‘woocommerce_product_tabs’, ‘reorder_tabs_product_page’, 98 );However, when I enable the plugin it does go back to the default tab order.
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Review tab first with Yotpo’ is closed to new replies.