What do I have to do to show the calendar oin a different page?
Please please help! I need a calendar, bought your calendar. Now it shows on a page “events” in the top menue and is completely destroying my design. You completely overtake the page content. My top-sliders are dropped.
Can you please please please give me a way to at least move the calendar to a page in a submenu?
This doesn’t work:
————————
/**
* Alter the organizer post type slug.
*
* Remmber that if rewrite-related properties (such as the post type slug) are
* changed you may need to flush permalinks by visting the Permalink Settings
* screen.
*/
function modify_organizer_type_properties( $properties ) {
// Change the slug
$properties[‘rewrite’][‘slug’] = ‘events/kalender/’;
return $properties;
}
// This hook is only available if Events Calendar PRO is activated
add_filter( ‘tribe_events_register_venue_type_args’, ‘modify_organizer_type_properties’ );