Viewing 4 replies - 1 through 4 (of 4 total)
  • Thanks for reaching out! I do want to note that, while this does sound possible, it will take a fair amount of custom development on your part and we are fairly limited in how much we can support custom development questions like this. That said, I’d be happy to point you in the right direction if I can.

    Many others have found answers or starting points by searching our Knowledgebase. You can also search our premium forums to see if another user has posted about a similar issue. Also, you can find all of our available filters for The Events Calendar here in our documentation.

    It’s worth noting that the RSVP template itself can be found here:
    wp-content/plugins/event-tickets/src/views/tickets/rsvp.php

    You can override that file in your theme using a template override (more on that in the Themer’s Guide linked to above) to customize the layout with additional user meta.

    I hope this helps get you started!

    I too am seeking to have the RSVP automatically pull the users name and email address instead of logged in users having to insert it. Thank you.

    Great news! You can use child themes to modiify the rsvp.php file, and seek the line for name and email.

    Add a value to the text box for user equating to: value=”<?php global $user_login; get_currentuserinfo(); echo $user_login;?>”

    Furthermore, add a value to the text box for email: value=”<?php global $user_email; get_currentuserinfo(); echo $user_email;?>”

    Hope this help you.

    Plugin Contributor GeoffBel

    (@geoffbel)

    Hey @alfamediallc,

    I simply wanted to take a moment to say thank you for that great feedback.

    You are welcome back in our support forums any time ??

    Have a great weekend!

    Geoff B.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Default current user's info in RSVP form’ is closed to new replies.