• 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)
  • Thread Starter zielakowy

    (@zielakowy)

    I tried this but it does not help

    Hey @dedlobster, if you comment out line 412 in wc_yotpo.php you should be able to manage the tab with WooCommerce Tab Manager.

Viewing 1 replies (of 1 total)
  • The topic ‘Review tab first with Yotpo’ is closed to new replies.