We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In event calendar plugin we are using following script
<script type="text/javascript"> (function ($) { 'use strict'; $(document).ready(function ($) { $("#event-calendar-limit<?php echo $rand_id; ?>").eventCalendar({ jsonData:<?php echo $event_calendar; ?>, jsonDateFormat: 'human', txt_noEvents: '<?php _e ( 'No results found.', 'events' ); ?>', showDescription: true, eventsLimit:<?php echo $events_limit; ?>, txt_NextEvents: '<?php echo $txt_NextEvents; ?>', monthNames: ["January, ", "February, ", "March, ", "April, ", "May, ", "June, ", "July", "August, ", "September, ", "October, ", "November, ", "December, "], }); }); })(jQuery); </script>
This shows the upcoming events.We want to show all events including past and future events.Is any parameter exist to show all events.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In event calendar plugin we are using following script
This shows the upcoming events.We want to show all events including past and future events.Is any parameter exist to show all events.
The text was updated successfully, but these errors were encountered: