Results 1 to 4 of 4

Thread: How do I override Pagination?

  1. #1
    Thread Starter
    shaneoriordan's Avatar
    Join Date
    Mar 2014
    Location
    Ireland
    Posts
    53
    Thanks
    6
    Thanked 1 Time in 1 Post

    How do I override Pagination?

    I posted this in the General Discussion (Community Support) forum but no bites yet, so am posting here.

    I am trying to display all my listings on a single page; just Business name without styling.
    I only have approx 100 listings so massive page not an issue, so was wondering, how do I bypass the pagination?

    Code is a stripped down version from va_home.php

    I edited includes/core.php (and placed this code section in child theme.


    and changed the function below

    function va_get_home_listings() {
    global $va_options, $wpdb;

    if (is_page('MY-CHOSEN-PAGE')) {
    $args = array(
    'post_type' => VA_LISTING_PTYPE,
    'posts_per_page' => '-1',
    'order' => 'asc',
    );
    }
    else {
    $args = array(
    'post_type' => VA_LISTING_PTYPE,
    'posts_per_page' => $va_options->listings_per_page,
    'order' => 'asc',
    );
    }

    .......rest of function code....
    }


    This didn't work.

    Any ideas?

    Many thanks.

    Shane

  2. #2
    Thread Starter
    shaneoriordan's Avatar
    Join Date
    Mar 2014
    Location
    Ireland
    Posts
    53
    Thanks
    6
    Thanked 1 Time in 1 Post
    You must be an AppThemes customer and logged in to view this response. Join today!

  3. #3
    dimitris's Avatar
    Join Date
    Oct 2011
    Location
    Earth
    Posts
    20,617
    Thanks
    222
    Thanked 1,873 Times in 1,770 Posts
    You must be an AppThemes customer and logged in to view this response. Join today!

  4. #4
    Thread Starter
    shaneoriordan's Avatar
    Join Date
    Mar 2014
    Location
    Ireland
    Posts
    53
    Thanks
    6
    Thanked 1 Time in 1 Post
    You must be an AppThemes customer and logged in to view this response. Join today!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [MOD NEEDED] How do I override Pagination
    By shaneoriordan in forum Vantage General Discussion (Legacy)
    Replies: 0
    Last Post: April 7th, 2014, 03:38 AM
  2. To override external links?
    By ademsari238 in forum Help Using ClassiPress
    Replies: 3
    Last Post: April 2nd, 2014, 06:12 AM
  3. Override Paypal.php file
    By figureslibres in forum ClassiPress General Discussion
    Replies: 0
    Last Post: August 12th, 2013, 07:28 AM
  4. Best way to override jr_* functions
    By jemcapon in forum Report JobRoller Bugs
    Replies: 1
    Last Post: July 23rd, 2012, 06:55 AM
  5. child themes css override
    By binh in forum Report ClassiPress Bugs
    Replies: 3
    Last Post: May 22nd, 2012, 04:31 AM