Viewing 1 replies (of 1 total)
  • John Coy a11n

    (@johndcoy)

    Automattic Happiness Engineer

    Hi Gustavo,

    Storefront uses the WooCommerce featured shortcode to show the featured products on the homepage. Here is a link to the documentation to help identify which to use:

    https://docs.woocommerce.com/document/storefront-hooks-actions-filters/

    In your case you can add the following filter to your theme’s functions.php file:

    function marce_featured_orderby_change( $args ) {
        $args['orderby'] = 'rand';
        return $args;
    }
    add_filter( 'storefront_featured_products_args', 'marce_featured_orderby_change' );

    Hope that helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Order by RAND (HOME PAGE’ is closed to new replies.