Events Calendar Pro Fix for 404 Recurring/Series Events
-
I had trouble getting recurring and series events to work without showing 404’s due to WP regex matching on custom post types. Adding this code into my functions.php fixed the issue.
function qwerty_custom_rewrite_basic() { add_rewrite_rule('^event/(.+)/(.+)', 'index.php?tribe_events=$matches[1]&eventDate=$matches[2]', 'top'); } add_action('init', 'qwerty_custom_rewrite_basic');
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Events Calendar Pro Fix for 404 Recurring/Series Events’ is closed to new replies.