• Resolved ccmtrotter

    (@ccmtrotter)


    Hello I am using this plug in on a commercial real estate site I am building and I would like to remove the pagination on the search results page. I would like for the search to pull up all of the listings and not seperate them into pages.

    I have been able to customize the template a bit but I cannot find this section.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author agentevolution

    (@agentevolution)

    In the archive-listing.php file, you will see the pagination functions at the bottom of the archive_listing_loop() function. Just edit the file and remove those lines.

    It looks like this (different functions are used depending on theme used):

    if (function_exists('equity')) {
    	equity_posts_nav();
    } elseif (function_exists('genesis_init')) {
    	genesis_posts_nav();
    } else {
    	wp_listings_paging_nav();
    }

    *Note: if you want to modify the template, it’s advised to copy the file to your theme folder so it will not be overwritten in a plugin update.

    Thread Starter ccmtrotter

    (@ccmtrotter)

    Hello, thank you for getting back to me. I tried removing those functions and it removed the numbers but did not list all of the properties associated with that category, just the first 6.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing Pagination in Search Result’ is closed to new replies.