• Resolved lebrucode

    (@lebrucode)


    Hello,

    I need to random display vendors in store list. Shortcode orderby”random” doesn’t work.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    I had the same probleme.

    You can add this snippet in your function.php for “orderby=random” to work :

    add_action( ‘pre_user_query’, ‘orderby_random’ ); function orderby_random( $query ) { if( ‘rand’ == $query->query_vars[‘orderby’] ) $query->query_orderby = str_replace( ‘user_login’, ‘RAND()’, $query->query_orderby ); return $query; }

    Have a good day

    Thread Starter lebrucode

    (@lebrucode)

    Hello @gwallpm

    Thank you so much !

    Cheers

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Random orderby doesn’t work’ is closed to new replies.