Support

Home Forums Pre-Sales One Event repeating many times during the day in multiples venues.

One Event repeating many times during the day in multiples venues.

Posted: April 4, 2014 at 4:41 am


elias garcia

April 4, 2014 at 4:41 am

Hello,
I wonder how I could do this?
For example I have 1 Event (for example a film) that is repeated 10 times in a day or more. PErhaps in one venue or in multiple venues… Is this possible to upload in a friendly manner using your plugins? Can you please explain me in easy english. I appreaciate your help! Thank you. Regards, Elias


Rune Sandnes

April 4, 2014 at 12:35 pm

I have a very similar problem as yours, the best would be if it was possible to select a venue for each Datetime.

Is it possible to set this up somehow already, or is that something that will have to be programmed in as a new feature?

I just bought EE4 today, thinking it could do exactly this 🙂
For some reason I thought I saw a “venue” field in the screenshot of the multiple datetimes. This would solve both of our problems, and would be a great selling point for film festivals!


Dean

April 7, 2014 at 1:08 am

Hi,

Right now multiple venues per event is not possible.

It is an idea we are exploring though. I can’t confirm that it will be a feature we will include, but it is definitely something we are considering.

Sorry that I cannot provide anything more definite than that.


Rune Sandnes

April 7, 2014 at 2:47 am

It just occured to me that I can use the “Name” field in the Datetimes to specify which location this particular show is using. It won’t automatically become a link to the location, though.
And I might lose some other integration (calendar?) that I haven’t tested yet, but I will look into it.


Dean

April 7, 2014 at 4:05 am

@Rune,

Interesting idea. You could use the_content filter to change it into a link

function ticket_name_filter($phrase)
{
	$post = get_post_type();

    if ($post == "espresso_events" ) {
        $phrase = str_replace('venuename', '<a href="#">venuename</a>', $phrase);
        return $phrase;
    }
    else {
    	return $phrase;
    }
}
add_filter('the_content', 'ticket_name_filter', 200);

The support post ‘One Event repeating many times during the day in multiples venues.’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso