pillwax.software
Forum Replies Created
-
Also when using themes like Bootstrap based responsive themes having a form template file makes it possible to adapt the form to the site design.
Right now the hardwired form does not easily allow that.
Thanks.
Hello Stephen,
all Queries which list posts based on category or tag.
Example: Goto the categories and use the link on the number of posts in that category. The resulting post list only showed some posts instead of all counted in the category (due to the GROUP_BY in the query).Same for tags.
We like your plugin, and while implementing it we also appreciated the good code quality which is not always the case with open source software.
That way we where also able to find out what to correct and provide that back to you as feedback.
Thanks for your work and efforts, our client was stunned how your event calendar turned out on his site.Update, the following makes it work also in the backend to correctly show all posts/pages and also events:
Function: eventorganiser_event_groupby( $groupby, $query )
global $wpdb; if ( eventorganiser_is_event_query( $query ) ) { if (!is_admin()) { if(!empty($query->query_vars['group_events_by']) && $query->query_vars['group_events_by'] == 'series'){ return "{$wpdb->eo_events}.post_id"; } } if(!empty($groupby)) return $groupby; return "{$wpdb->eo_events}.event_id"; } return $groupby;