Venues/Locations Module

maxcinsay
@maxcinsay
11 years ago
60 posts
Hello guys, Do you offer a module to let venues sign up and then the artists be able to link the shows to the venues? ( I didnt see one in the market place). I mean, people can see the upcoming shows per artist, but we would like to offer another option where the users see the shows per venue.
updated by @maxcinsay: 12/15/13 10:26:21AM
brian
@brian
11 years ago
10,148 posts
I'm guessing you would have an "Artist" quota and a "Venue" quota - then you could list all events by venues (or a specific venue).

I know Paul has done a lot more work on venues, booking and gig customization, so let's see if he has some feedback for you as well.

Hope this helps!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
maxcinsay
@maxcinsay
11 years ago
60 posts
Good idea, now, could the artists link to the venues when they are creating their events?. For example, Im looking at Jhon Doe's profile page and his upcoming events, one of them is happening in a location/venue I like, could I click on the name of the venue and jump to all the upcoming events in that place?
brian
@brian
11 years ago
10,148 posts
Oh yeah - that should be easy. You would just link to a page that passes in the venue name as the search that gets used in the jrCore_list call. So at it's most simple, you would create a page in your active skin called "venue_events.tpl" (or whatever you want to call it). Inside would be something like:

.. header stuff here ..

{jrCore_list module="jrEvent" search1="event_location like `$_post.ss`" pagebreak="10"}

.. footer stuff here ..

Then in your event listing on John Doe's profile, you update the template so there is an anchor around the event_location - i.e.

<a href="{$jamroom_url}/venue_events?ss={$item.event_location|urlencode}">{$item.event_location}</a>

So then, then that is clicked on it will locate the venue_events.tpl file, pass in "ss" (search string) which is used as a saerch parameter in the jrCore_list call.

That should work - just tweak it to suit your needs.

Hope this helps!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
maxcinsay
@maxcinsay
11 years ago
60 posts
Brian, you are the man! thank you very much! You just ended the headache I was having >)
brian
@brian
11 years ago
10,148 posts
No problem ;)


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
michael
@michael
11 years ago
7,714 posts
added as a HowTo here:
http://www.jamroom.net/the-jamroom-network/documentation/howto/1060/howto-list-all-events-that-are-happening-at-a-particular-venu

@maxcinsay if you stumble upon anything that could be added to that HowTo to make it better for others, just say and we'll get it added in there.
alt=
@ragorg
11 years ago
5 posts
Thank you guys (this is maxcinsay with the company account)

Tags