Home › Forums › Ticket Products › Event Tickets Plus › My RSVPs for This Event List
- This topic has 9 replies, 4 voices, and was last updated 9 years, 2 months ago by
agcreate.
-
AuthorPosts
-
January 13, 2017 at 2:16 pm #1218384
agcreate
ParticipantI 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!
January 16, 2017 at 10:27 am #1219116Nico
MemberHi 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,
NicoJanuary 16, 2017 at 11:09 am #1219135agcreate
ParticipantNico,
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!
January 17, 2017 at 12:32 pm #1219799Nico
MemberHey @agcreate, thanks for following up!
Unfortunately the attachment didn’t make it. Can you please try again?
Thanks,
NicoJanuary 17, 2017 at 12:44 pm #1219806agcreate
ParticipantLet me try this one more time.
January 23, 2017 at 7:05 pm #1222705Nico
MemberPerfect, 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,
NicoFebruary 1, 2017 at 12:23 pm #1227766agcreate
ParticipantHey 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!
February 3, 2017 at 8:43 am #1228997Nico
MemberHey,
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,
NicoFebruary 25, 2017 at 8:35 am #1245821Support Droid
KeymasterHey 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 -
AuthorPosts
- The topic ‘My RSVPs for This Event List’ is closed to new replies.
