My RSVPs for This Event List

Home Forums Ticket Products Event Tickets Plus My RSVPs for This Event List

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1218384
    agcreate
    Participant

    I am trying to modify the way the list appears on the My RSVPs for This Event page. This is the page that is generated after you click on the “View your RSVPs” link on the RSVP page.

    What I am needing to change is in the listing of attendees. I would like to change “ATTENDDE 1” to be the name of the attendee. Some of our RSVP listed may have up to 50 attendees and I need to make it easy to see the attendees to be able to edit them.

    I hope I haven’t confused anyone yet.

    I have found the line of code in the orders-rsvp.php file but I have no idea what code to drop in to make it work.
    I am new to PHP and I have been able to stumble my way threw things, but his has me stumped.

    Thanks for any help!

    #1219116
    Nico
    Member

    Hi there @agcreate,

    Welcome to our support forums and thanks for getting in touch with us. I can help you here!

    I guess this is possible if the information is available. Can you please let me know if you are asking for this information per attendee (with attendee information fieldsets)? By default the plugin collects one set of name / email per ‘RSVP’, and not per ticket. Maybe this name is the one you are referring to? Can you send me a screenshot of the ‘My tickets page’ and highlight which is the place you are trying to show this?

    Some of our RSVP listed may have up to 50 attendees and I need to make it easy to see the attendees to be able to edit them.

    Just for the record each user sees just their ‘RSVP’ tickets, so not sure about the questions above. Probably the screenshot you send will clarify.

    Please let me know about it,
    Best,
    Nico

    #1219135
    agcreate
    Participant

    Nico,
    Thanks for getting back to me.
    I have attached a screenshot of the page i am wanting to modify. I have highlighted the line that I would like to change.

    The name I am referring to is the name on the ticket that shows up after you toggle attendee info down.

    If this is not a potability, would it be possible to have the attendee info toggled down when the page loads so all the information is showing.

    Thanks!

    #1219799
    Nico
    Member

    Hey @agcreate, thanks for following up!

    Unfortunately the attachment didn’t make it. Can you please try again?

    Thanks,
    Nico

    #1219806
    agcreate
    Participant

    Let me try this one more time.

    #1222705
    Nico
    Member

    Perfect, thanks for attaching the screenshot! I get you now 🙂

    I don’t think this is an easy thing to achieve! But I might be wrong so please give me some time to inspect the code and I’ll get back to you.

    Thanks,
    Nico

    #1227766
    agcreate
    Participant

    Hey Nico,
    Have you had any luck on this. I am looking to deliver this site to my client soon and it would be great if I could include this update. Like I said before if this option doesn’t work, is there a way to have the “toggle attendee info” already toggled when the page loads?

    Thanks again for help!

    #1228997
    Nico
    Member

    Hey,

    Thanks for the patience while I reviewed this! I dived into the code but if definitively not easy to achieve what you are looking for in a simple way. But this js snippets will help expanding the edit meta fields by default. Just paste them in your theme’s (or child theme’s) functions.php file:


    /*
    * The Events Calendar snippet
    * Show meta data edit fields by defualt
    */
    function tribe_toggle_attendee_meta() {

    ?>
    <script type="text/javascript" >
    jQuery(document).ready( function ($) {
    if ( $('.attendee-meta.toggle').length ) {
    $('.attendee-meta.toggle').toggleClass( 'on' ).siblings( '.attendee-meta-row' ).show();
    }
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'tribe_toggle_attendee_meta');

    Hope that helps,
    Best,
    Nico

    #1245821
    Support Droid
    Keymaster

    Hey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.

    Thanks so much!
    The Events Calendar Support Team

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘My RSVPs for This Event List’ is closed to new replies.