@kokothecoder
Thank you for writing back.
We just had a report of a similar glitch from another customer using the Salient theme.
After investigation, it looks like there is a filter in that theme that limits the number of posts per page to 12.
One quick way to check if this is theme-related is to have a staging site where you can switch themes to a default WP theme such a twenty-twenty and see if the problem persists.
In fact, going through the complete testing for conflicts procedure would be awesome!
Another approach (if you are comfortable with code AND have done a backup of your site) is to try the following in your theme’s functions.php
function nectar_change_wp_search_size($query) {
// If tribe_events post type, bail.
if ( $query->query_vars['post_type'] == 'tribe_events' ) {
return $query;
}
if ( $query->is_search )
$query->query_vars['posts_per_page'] = 12;
return $query;
}
Best regards,
Geoff