@shamank,
Thanks for writing to us.
Currently, it is not controlled through settings but we’ll add it in our future SEP release.
You can change the event slug by changing the post type parameters by using the followong filter. If you don’t have knowledge about the WordPress hooks then you can reach us on support@presstigers.com for our services.
We are sharing the exact code where this filter is hooked. You can use register_post_type_event_listing filter to update the slug.
https://plugins.trac.wordpress.org/browser/simple-event-planner/trunk/includes/class-simple-event-planner-post-type-event-listing.php#L146
Best Regards,
-
This reply was modified 1 year, 9 months ago by
PressTigers.
Thank you guys. I’m a developer, however I’m not a WP developer (I have basic knowledge about WP structure and hooks). I’ll add `register_post_type(“event_listing”, apply_filters(“register_post_type_event_listing”, $args_events));
` to my child’s functions.php. Do I need to pass the entire array ($args_events) or is it enough just by passing the ‘rewrite’ key?