API SEARCH OTZEM

This topic contains 1 reply, has 2 voices, and was last updated by Ernest Marcinko Ernest Marcinko 1 year, 9 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #38305
    Sziget
    Sziget
    Participant

    Hey!
    we are trying to use the search API but we see only 7 results in the API (actually there are more). What can I do?
    We use this link:
    wp-json/ajax-search-pro/v0/search?s=

    Thank you

    Attachments:
    You must be logged in to view attached files.
    #38312
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi,

    It looks like as if the posts_per_page variable is accounted for, and the results are trimmed.

    Can you try this custom code:

    add_filter("asp_query_args", "asp_query_args_change", 10, 2);
    function asp_query_args_change($args, $search_id) {
    	if ( wp_is_json_request() ) {
    		$args['posts_per_page'] = 9999;
    	}
    	return $args;
    }

    Let me know if that changes anything.

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.