• Resolved Ray Hollister

    (@rayhollister)


    We are having trouble using the venues. We have added 20 venues to WP event manager, but they are only appearing on the front end for the user that created them. Any other user cannot see them. We have multiple users adding events to the calendar for multiple venues.

    Here’s a screen capture video showing the issue we are experiencing…

Viewing 1 replies (of 1 total)
  • Hi @rayhollister

    Please use the following code in the functions.php at theme side
    
    add_filter( 'get_all_event_venue_args', 'wpem_all_event_venue_args', 10 );
    function wpem_all_event_venue_args($args)
    {
    	if(isset($args['author']))
    		unset($args['author']);
    
        return $args;
    }

    Regards,
    Priya

Viewing 1 replies (of 1 total)
  • The topic ‘Venues only appear on the front end for the user that created them’ is closed to new replies.