Home › Forums › Calendar Products › Events Calendar PRO › Separate Details and Venue Panels
- This topic has 7 replies, 3 voices, and was last updated 10 years, 10 months ago by
Support Droid.
-
AuthorPosts
-
November 24, 2013 at 6:19 pm #78408
mtdave
ParticipantMy client would like to move the content information between the Details panel and the Venue panel. Something like this:
Tickets
Details
Content
Venue.Right now I cannot see anyway to seperate Details and Venue so they appear:
Tickets
Details
Venue
Content.Please let me know how this might be possible?
November 25, 2013 at 2:59 pm #78502Barry
MemberWhen you say tickets, are you referring to the ticket form generated by WooCommerce Tickets or one of our other ticketing addons (if so, please do post on the relevant forum).
In general though you can certainly re-order things – check out our Themer’s Guide for an overview of customizing our templates.
November 25, 2013 at 4:02 pm #78525mtdave
ParticipantYes, the ticket form generated by WooCommerce Tickets.
The Themer’s guide doesn’t cover splitting the Details and Venues panels.
To make it clearer, I need to have the panels in this order:
Details
Content
Venue
The following code allows me to reposition the meta panels, but not seperate them. I am interested in seperating them.
[code]remove_action(‘tribe_events_single_event_after_the_meta’, array(TribeWooTickets::get_instance(), ‘front_end_tickets_form’), 5);
add_action(‘tribe_events_single_event_before_the_meta’, array(TribeWooTickets::get_instance(), ‘front_end_tickets_form’));[/code]
Is it possible to seperate ‘Details’ and ‘Venue’? Please let me know and if so how?
ThanksNovember 25, 2013 at 4:05 pm #78528mtdave
ParticipantThis reply is private.
November 25, 2013 at 4:08 pm #78531Barry
MemberYes, you can move the venue details (into a separate container) by adding a snippet like the following one to your theme’s functions.php file:
add_filter( 'tribe_embed_google_map', '__return_true' );Does that get you any closer?
November 25, 2013 at 4:32 pm #78540mtdave
ParticipantHmmm, adding add_filter( ‘tribe_embed_google_map’, ‘__return_true’ ); made no difference.
But add_filter( ‘tribe_embed_google_map’, ‘_return_true’ ); (where there is only one underscore before ‘return_true’ ) removes the map panel. This is ok, but is there some way to put the map panel back in under the description/content?
ThanksNovember 26, 2013 at 2:55 pm #78736Barry
MemberI do apologize, I gave you the wrong snippet there. This should force the venue details to display separately:
add_filter('tribe_events_single_event_the_meta_group_venue', '__return_true');July 7, 2015 at 6:30 am #982656Support Droid
KeymasterThis topic has not been active for quite some time and will now be closed.
If you still need assistance please simply open a new topic (linking to this one if necessary)
and one of the team will be only too happy to help. -
AuthorPosts
- The topic ‘Separate Details and Venue Panels’ is closed to new replies.
