Viewing 1 replies (of 1 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    to randomize the ads on the [adverts_list] you need to first register random order param, you can do that by adding the code below in your theme functions.php file

    
    add_filter( "adverts_list_query", function( $args, $params ) {
        if( isset( $params["order_by"] ) && $params["order_by"] == "rand" ) {
            $args["orderby"] = array( "rand" => "DESC" );
        }
        return $args;
    }, 10, 2 );
    

    Now you should be able to use the [adverts_list] as

    
    [adverts_list order_by="rand"]
    
Viewing 1 replies (of 1 total)
  • The topic ‘random adverts_list’ is closed to new replies.