Updated maximum number of entries per member listing to 50
authorChuck Scott <cscott@gaslightmedia.com>
Fri, 24 Jun 2016 15:50:53 +0000 (11:50 -0400)
committerChuck Scott <cscott@gaslightmedia.com>
Fri, 24 Jun 2016 15:50:53 +0000 (11:50 -0400)
simple-wp-membership/methods.php

index 3d43934..248d872 100644 (file)
@@ -86,7 +86,7 @@ if ($haveSearch) {
 //     $query.=' ORDER BY ' . $orderby . ' ' . $order;
        $query.=' ORDER BY last_name, first_name ';
        $totalitems = $wpdb->query($query); //return the total number of affected rows
-       $perpage = 20;
+       $perpage = 50;
        $paged  = filter_input(INPUT_GET, 'paged');
        if (empty($paged) || !is_numeric($paged) || $paged <= 0) {
            $paged = 1;