Hi Golok and ForaJosh,
Since the inception of this plugin we’ve included a filter to allow you to alter the slugs of the announcements. You can set them to be whatever you like, for example /events/
.
Feel free to copy the following snippet and paste it at the bottom of your theme (or child themes) functions.php file:
// alter '/announcement/' to be '/event/'
function timeline_express_change_announcement_slug( $slug ) {
$slug = 'event';
return $slug;
}
add_filter('timeline-express-slug', 'timeline_express_change_announcement_slug' );
Once you add that, you’ll want to save the functions.php.
Once saved, you’ll want to refresh your permalinks. This is an important step, and if left undone you’ll encounter 404 errors when you try and access the single announcement template.
From within the administrative dashboard head into the permalinks page, ‘ Settings > Permalinks’ and simply click ‘Save’. Once completed, head back into any of your announcements to see if things updated properly.
Thanks!
Evan