Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #344627

    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

    #344698

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.