Forum Replies Created
-
AuthorPosts
-
davidalexander
ParticipantAlso, is there a way to show all upcoming events. The plugin doesn’t show events having the same title.
Thank you!
davidalexander
ParticipantHi Ernest.
I have rescheduled the recurring events to refresh the recurrence – some of the recurrences occur in year 1970. And after doing this, these events are now showing up on the page.
But it didn’t display the event https://lmg.alexandermarketing.co.uk/events/fantastical-beasts/ which is dated on 30/03/2019 – 03/11/2019. I think this is because the custom post type used is ‘_event_start’. Is there a way to check the inputted date if it is between the ‘_event_start’ and ‘_event_end’?Thank you, it’s getting there!
davidalexander
ParticipantHi Ernest,
Yes, _event_end is set for all events including the recurrences.
davidalexander
ParticipantHello Ernest,
We use ‘_event_start’ to show results ‘..after the date (from date) inclusive’.
I tried using ‘_event_end’ as per your suggestion using with every combination of the datepicker operation (before the date, after the date, etc). But on page load it doesn’t show the upcoming events and on input of a date to filter it doesn’t show correct events which are events within the date range and events happening after the inputted date.Regards,
David Alexanderdavidalexander
ParticipantHi,
When I click on the update now option, it says “Update Failed: Plugin update failed.”. What is the reason?davidalexander
ParticipantHi,
We have tried to update plugin to the latest version. But it showing an error that is “not compatible with the version of your word press”. We have the latest WordPress version 5.2. I have checked with plugin releases and it says only compatible up to WordPress 5.1. So how can we plugins to avoid any security issues.Also I can’t restrict the number of events to 6 on home page.
https://lmg.alexandermarketing.co.uk/-
This reply was modified 7 years ago by
davidalexander.
davidalexander
ParticipantOk. I think you have understood my problem. I need to display only today’s and upcoming event. Do not want to show the past events. But, if we search for December 12, 2019 we need to display events from January 1, 2019 to December 31, 2019. the the searched date is in between this.
davidalexander
ParticipantPerfect. Thank you so much.
All the search instances are working as same. So, we need to apply this for all the search sections.davidalexander
ParticipantHi,
1. It’s not working yet. I have changed this as mentioned. but showing the results from December, or without any order.
https://lmg.alexandermarketing.co.uk/
https://lmg.alexandermarketing.co.uk/whats-on/
Please do check these 2 pages.2. Can you please change it as we needed. is it possible?
davidalexander
ParticipantOk Thanks.
What about this,
on this page https://lmg.alexandermarketing.co.uk/whats-on/, here we are listing events from all venues. We have added the ordering as event_start ascending. but it’s not working fine. It’s working for all other pages.Also, events that have passed are still showing. Is there a way to only show events that are either today or in the future? For exampleon https://lmg.alexandermarketing.co.uk/abbey-house-museum/whats-on-abbey-house-museum/ there are plenty of events that have already been on.
-
This reply was modified 7 years, 1 month ago by
davidalexander.
davidalexander
ParticipantIs there any different solution, otherwise this is fine.
Also, on this page https://lmg.alexandermarketing.co.uk/whats-on/, here we are listing events from all venues. We have added the ordering as event_start ascending. but it’s not working fine. It’s working for all other pages.
Also, events that have passed are still showing. Is there a way to only show events that are either today or in the future? For exampleon https://lmg.alexandermarketing.co.uk/abbey-house-museum/whats-on-abbey-house-museum/ there are plenty of events that have already been on.
-
This reply was modified 7 years, 1 month ago by
davidalexander.
-
This reply was modified 7 years, 1 month ago by
davidalexander.
-
This reply was modified 7 years, 1 month ago by
davidalexander.
-
This reply was modified 7 years, 1 month ago by
davidalexander.
davidalexander
ParticipantDate format is changed. but it’s only worked for single events. It’s not working for repeating events. Please do check https://lmg.alexandermarketing.co.uk/whats-on/.
Also what about the duplicate date issue. If the start and end date is same, we need to show only a single date.
-
This reply was modified 7 years, 1 month ago by
davidalexander.
davidalexander
ParticipantHi, I need to change the date format in events display.
There is a settings to change date formats, date display styles etc on events manager plugin itself. We need to do the same format in this result.The events are still showing ‘seconds’ in the times, also different formats on some, See, https://lmg.alexandermarketing.co.uk/whats-on/
Time is still showing as HH:MM:SS and events that are just one day still have the same date repeated as beginning + ending rather than just the one date.Time should be 12 hr and use am and pm
When you load the What’s On page it is showing random dates
davidalexander
ParticipantWe have done the same for first page load before.
You have added the following function to do the same.add_filter(‘asp_query_args’, ‘asp_reset_date_filter’);
function asp_reset_date_filter($args) {
if ( isset($_POST[‘autop’]) ) {
foreach ( $args[‘post_meta_filter’] as $k => $v ) {
if ( $v[‘key’] == ‘_event_start’ ) {
unset($args[‘post_meta_filter’][$k]);
}
}
}
return $args;
}Did you remember this, I am saying to do the same for event type.
davidalexander
ParticipantOk. Can you please disable the date filtering on the event type filtering on first time. As we done the same on first page load before. Which means, disable the date filter on page loading date filter needs to work only after we change or select the date
-
This reply was modified 7 years ago by
-
AuthorPosts