From d5ca5215de73d91604dfc79489e67a7b9f53a27c Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Fri, 24 Jun 2016 11:44:35 -0400 Subject: [PATCH] Member list was not going past 20 entries. Was not showing paging links. Simply changed the entries per page to 50. --- simple-wp-membership/methods.php | 2 +- style.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/simple-wp-membership/methods.php b/simple-wp-membership/methods.php index 3d43934..248d872 100644 --- a/simple-wp-membership/methods.php +++ b/simple-wp-membership/methods.php @@ -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; diff --git a/style.css b/style.css index aa5a4ec..25bd373 100644 --- a/style.css +++ b/style.css @@ -3,5 +3,5 @@ Theme Name: WequetonsingAssociation Author: Gaslight Media Author URI: http://www.gaslightmedia.com Description: A theme for WequetonsingAssociation -Version: 1.0.15 +Version: 1.0.16 */ -- 2.17.1