manon1165
Member
Posted 2 years ago #
I need to change the event list limit from 10 to 100 on the events list page.
I tried to put the dbem_get_events_list("limit=100&order=ASC") directly into the template, but when the event is clicked, it does not go directly to the single event page, just stays in the events list.
Is there a way to change the limit directly in the plugin?
Thank you for any help with this.
http://wordpress.org/extend/plugins/events-manager/
You will need to change:
* in the file dbem_events.php
* in the function dbem_events_page_content
* around about line 490 where
$events_body = $single_event_format_header . dbem_get_events_list ( 10, $scope, "ASC", $stored_format, $false ) . $single_event_format_footer;
Change the 10 to 100.
Should work