• Resolved borchiriccardo

    (@borchiriccardo)


    Hello,

    I have some issues after the latest update.

    1) How can I translate “event-organizer” in the organizer URL?

    2) How can I set an organizer for an event? I can’t find any fields in the event page for the organizer.

    3) How can I use correctly “selected_datetime”? I want to show only the upcoming events.

    Thank you.

    Best Regards.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @borchiriccardo

    1) How can I translate “event-organizer” in the organizer URL?

    Add the following filter in your Functions.php file

    add_filter( 'register_event_organizer_post_type', 'organizer_post_type', 10);
    function organizer_post_type($args){
    	
    	if(isset($args['rewrite']['slug']) && !empty($args['rewrite']['slug']))
    	{
    		$args['rewrite']['slug'] = 'organizer';
    	}
    	return $args;
    }

    2) How can I set an organizer for an event? I can’t find any fields in the event page for the organizer.

    Please follow the doc: https://wp-eventmanager.com/knowledge-base/setting-up-organizers/ and make sure to have all the pages related to organizers.

    3) How can I use correctly “selected_datetime”? I want to show you only the upcoming events.
    We will update this feature in the upcoming version of the plugin.

    Regards,
    Priya

    • This reply was modified 4 years, 5 months ago by Priya Goenka.
    Thread Starter borchiriccardo

    (@borchiriccardo)

    Hi @priyagoenka,

    thank you! We had already resolved with your support, thanks.

    Best Regards.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add Organizer’ is closed to new replies.