• Hello.

    I come to you for a little help.

    In my supplier stores, I would like to have items sorted by date (recent first).

    Except at the present time it is the reverse.
    In the options woocommerces, everything is good and my pages articles do not have the problem there.

    There is a code that exists for woocommerce:

    add_filter(‘woocommerce_default_catalog_orderby’, ‘changer_orderby’);
    function changer_orderby( $sort_by ) {
    return ‘date’;
    }`

    Such a code exists for wcfm stores?

    Thanks for your help.

  • The topic ‘Sorting in stores’ is closed to new replies.