Forum Replies Created
-
AuthorPosts
-
Jessica Messervey
ParticipantLooks like it was a version problem. Ran some updates and it seemed to resolve itself.
Jessica Messervey
ParticipantHi Geoff,
I’ve taken a look at the overriding templates, and it was only the email.php template – not any views. I updated that template just to be sure and the problem still persists, so it’s clearly not a template problem.
Edit: A support agent recommended the below code on another a different thread for a completely different issue. The code snippet provided seems to be the cause of this issue; when removed the problem no longer persists.
To anyone still experiencing the same issue, after the fix update, I recommend you check your functions.php file or template files for the following code:
/** * Disables the public attendee lists on all events * * Removes the tribe_events_single_event_after_the_meta action that injects the attendee * list that was introduced with the initial 4.1 release of Event Tickets Plus */ function disable_attendee_list_on_post() { if ( ! class_exists( 'Tribe__Tickets_Plus__Attendees_List' ) ) { return; } remove_action( 'tribe_events_single_event_after_the_meta', array(Tribe__Tickets_Plus__Attendees_List::instance(), 'render' ), 4 ); } add_action( 'wp', 'disable_attendee_list_on_post' );Thanks!
-
This reply was modified 9 years, 11 months ago by
Jessica Messervey. Reason: Found the cause
Jessica Messervey
ParticipantThis reply is private.
Jessica Messervey
ParticipantI would like to remove it entirely, not just hide it with CSS using
display: none;Thanks!
Jessica Messervey
ParticipantAlso experiencing this problem and would like to be informed of resolution progress. Thanks!
Jessica Messervey
ParticipantI figured this out. For anyone else looking for this specific information, add:
$venue_state = get_post_meta( $venue_id, ‘_VenueStateProvince’, true );
after
$venue_city = get_post_meta( $venue_id, ‘_VenueCity’, true );
in your overriding templateand then add
<?php echo $venue_state; ?> where you would like the State/Province to show.Cheers!
-
This reply was modified 9 years, 11 months ago by
-
AuthorPosts
