Created
April 6, 2022 22:01
-
-
Save rafsuntaskin/a6037794e2d2bdfd4d95bfa6e69672b4 to your computer and use it in GitHub Desktop.
WP Engine RSVP meta not working
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'event_tickets_rsvp_ticket_created', 'etp_process_front_end_rsvp_tickets_form_data', 8 ); | |
function etp_process_front_end_rsvp_tickets_form_data() { | |
$storage = tribe( 'tickets-plus.meta.storage' ); | |
$storage->maybe_set_attendee_meta_cookie(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment