search page

Home Forums Legacy Support 4.0 Bugs & Issues search page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #364038
    RagabSalem
    Spectator
    Hello I need to increase the number of courses that appear on the search page https://prnt.sc/18sckqs
    #364058
    Veronica
    Moderator
    hi try to use: wp-admin->wplms->buddypress->buddypress items per page, change it accordingly.
    #364179
    RagabSalem
    Spectator
    This reply has been marked as private.
    #364273
    Veronica
    Moderator
    ok we need to check this if can be possible with the code or not please provide page URL
    #364353
    RagabSalem
    Spectator
    This reply has been marked as private.
    #364592
    Veronica
    Moderator
    hi try to add this code in wplms-customizer.php in wplms-customizer plugin
    function searchfilter($query) {
    
    if ($query->is_search && !is_admin() && $query->get('post_type') != 'course') {
        $query->set('posts_per_page',20);
    }
    
    return $query;
    }
    
    add_filter('pre_get_posts','searchfilter');
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘search page’ is closed to new replies.