Skip Navigation

[Resolved] Access the event venue for The Events Tribe

This support ticket is created 4 years, 12 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

This topic contains 2 replies, has 2 voices.

Last updated by orlaF 4 years, 12 months ago.

Assisted by: Waqar.

Author
Posts
#1460413

I am using Toolset with The Events Tribe plugin. This is the location: hidden link

I am trying to create a view that shows the event venue title as seen at the bottom of the homepage (Upcoming Courses)

Events have venues - I can expose the Event Venue ID using the following:
_EventVenueID

Is there a way to show the title of the venue using this ID?

#1461871

Hi Orla

Thank you for contacting us and I'd be happy to assist.

In your view, you can get the current event's Venue ID using the "wpv-post-field" shortcode:
( ref: https://toolset.com/documentation/user-guides/views/views-shortcodes/#wpv-post-field )


[wpv-post-field name='_EventVenueID']

And this ID can then be used as the "item" attribute value, in the "wpv-post-title" shortcode, to get its title:
( ref: https://toolset.com/documentation/user-guides/views/views-shortcodes/#wpv-post-title )


[wpv-post-title item="[wpv-post-field name='_EventVenueID']"]

I hope this helps and please let me know if you need any further assistance around this.

regards,
Waqar

#1461879

My issue is resolved now. Thank you!