On the single item page the description tab opens on default with the reviews tab behind it. Id it possiblt to have the reviews tab as the one that shows by default?
Many thanks
Hi rpl_admin!
Try adding this to the bottom of your /enfold/functions.php
file.
add_filter( 'woocommerce_product_tabs', 'sb_woo_move_description_tab', 98);
function sb_woo_move_description_tab($tabs) {
$tabs['reviews']['priority'] = 1;
return $tabs;
}
Cheers!
Elliott