Jessica Messervey

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: Fatal Error: Attendees List #1405124
    Jessica Messervey
    Participant

    Looks like it was a version problem. Ran some updates and it seemed to resolve itself.

    in reply to: Event update resets stock out to zero #1111197
    Jessica Messervey
    Participant

    Hi 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!

    in reply to: Event update resets stock out to zero #1110675
    Jessica Messervey
    Participant

    This reply is private.

    in reply to: Remove the public attendee list entirely #1103519
    Jessica Messervey
    Participant

    I would like to remove it entirely, not just hide it with CSS using display: none;

    Thanks!

    in reply to: tickets available keep resetting to zero #1095647
    Jessica Messervey
    Participant

    Also experiencing this problem and would like to be informed of resolution progress. Thanks!

    in reply to: Customize Ticket Emails: Show State/Province #902807
    Jessica Messervey
    Participant

    I 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 template

    and then add
    <?php echo $venue_state; ?> where you would like the State/Province to show.

    Cheers!

Viewing 6 posts - 1 through 6 (of 6 total)