From a5ae5311d6f229d1bf3593882fef6317121d9e53 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Fri, 23 Jun 2017 12:06:11 -0400 Subject: [PATCH] adding featured event check to the group by month conidtional adding a check for featured events with the event from date so that the featured events are also being pulled in --- models/front/events/list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/front/events/list.php b/models/front/events/list.php index ec2d563..ef8ab34 100644 --- a/models/front/events/list.php +++ b/models/front/events/list.php @@ -189,7 +189,7 @@ class GlmMembersFront_events_list extends GlmMembersFront_events_baseAction ) ) ); - } else if ( $groupMonth ) { + } else if ( $groupMonth && !$featured) { // restrict the date to one month of events if ( !isset( $_REQUEST['glm_event_from'] ) ) { // use the first date for this month -- 2.17.1