borisrorsvort
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [DreamObjects Backups] Backup not starting after 60secHow can it be on if I can see the front page of the site? Also usually there is a .maintenance file if its on right? And there is none 🙁
Forum: Plugins
In reply to: [DreamObjects Backups] Backup not starting after 60secNo I didnt disable it 🙁
I tried to visit cron page after launching the asap backup but not affect through the logs so farForum: Plugins
In reply to: [DreamObjects Backups] Backup not starting after 60secChecked and relaunched the asap backup and its no doing anything 🙁
Forum: Plugins
In reply to: [Plugin: Event Calendar 3] Archives ordered by event datesHi, i just got the answer from the support newsletter of ec3 and this does apparently the trick.
Paste this code into your functions.php template file and let the magic do:
function custom_rewrite_rules($rules) { $custom_rules = array(); $custom_rules['([0-9]+)/?$'] = 'index.php?m=$matches[1]&ec3_listing=yes&order=asc'; $custom_rules['([0-9]+)/([0-9]+)?$'] = 'index.php?m=$matches[1]$matches[2]&ec3_listing=yes&order=asc'; $custom_rules['([0-9]+)/([0-9]+)/([0-9]+)?$'] = 'index.php?m=$matches[1]$matches[2]$matches[3]&ec3_listing=yes&order=asc'; return $custom_rules + $rules; } add_filter('rewrite_rules_array','custom_rewrite_rules');Don’t forget to Update your permalinks structure so it takes filter
Thanks to Jonathan Alderson for this answer
Viewing 4 replies - 1 through 4 (of 4 total)