Hi Dave,
I see two ways of doing this:
Either you can add a menu / sub-menu entry that points to ‘http://wcn.spinmodern.co/events/community/add’
or you can create template overrides or our views and include the url there.
The first is definitely easier. The amount of work for the second depends on where exactly you want it to show up.
I just figured a third way. If you copy the following code in your child theme’s functions.php file, then it will add the link at the top and / or bottom of your calendar.
[code language=”php”]// This will add it above the calendar
add_action ( ‘tribe_events_before_template’, ‘add_community_events_link’ );
// This will add it below the calendar
add_action ( ‘tribe_events_after_template’, ‘add_community_events_link’ );
function add_community_events_link() {
echo ‘<a href="http://wcn.spinmodern.co/events/community/add/">Submit an event to the calendar</a>’;
}[/code]
Hope this helps.
Cheers,
Andras