For anyone else wanting to do this – I’ve added a new button for “Add New Event” next to the “Find Events” button on the Tribe Events bar.
Edit /plugins/the-events-calendar/views/modules/bar.php and add <input class=”tribe-events-button tribe-no-param” name=”newEvent” type=”button” value=”Add New Event” onclick=”window.location.href =’http://yoururl/events/community/add’;return true;”/> immediately after the existing <input class=”tribe-events-button tribe-no-param” type=”submit” name=”submit-bar” value=”<?php _e( ‘Find Events’, ‘tribe-events-calendar’ ) ?>” />
Style it up with a bit of CSS
/* Tribe Events Bar */
#tribe-bar-form .tribe-bar-submit input[type=submit] {
margin-left: -210px!important;
}
#top #tribe-events-bar input, #top #tribe-events-bar select {
margin-top: 10px!important;
}
#top #wrap_all .tribe-events-button {
height: 50px!important;
width: 175px;
margin-left: 40px;
}
Hope that’s helpful.
Ken