Home › Forums › Ticket Products › Event Tickets Plus › I have not been able to customize event ticket plus
- This topic has 3 replies, 2 voices, and was last updated 8 years, 5 months ago by
Dayana Arango.
-
AuthorPosts
-
October 26, 2017 at 5:23 pm #1369672
Dayana Arango
ParticipantI have not been able to customize event ticket plus
Hello I bought ticket ticket plus, and although I have read the documentation I am not able to achieve a basic personalization.
Context
I am using only the event ticket plus plugin. I do not want to use woocomerce because my need is very simple and the boletyo is free.I just want to put the form to get the ticket for free on a page of my wordpress. The ticket has no cost and I bought an event ticket to take advantage of the registration of users and the possibility to check in from the QR code.
I am using RSVP option
Questions
1) The RSVP form defaults to 3 fields: Full name, Email and RSVP option.
This form appears below the form of the custom fields. How can I make the RSVP form appear first than the fields of the attendees data?2) I want to make each record have a single confirmation email, so I will not be able to have more than one payee for each time someone completes their data. How can I make so that the ticket does not ask the number of attendees but, by default, request the data of the only attendees and the email to send the confirmation?
3) After you click on the “Confirm RSVP” button I want to be redirected to another different page, it is a special thank you page.
4) How can I make the event ticket form appear within the description of the page and not below the description
November 1, 2017 at 6:35 am #1372783Jennifer
KeymasterHi Dayana,
Thanks for reaching out! I’m sorry about the delayed response, our forums have been quite busy lately! While these changes are possible, they will require a bit customization. We are limited in the amount of support that we can provide for customizations, but I will try to point you in the right direction for each of these.
- Unfortunately there is not any way to move the default fields above your custom fields without customizing the code. If you’d like to do this, our themer’s guide is the place to start.
- You can limit the ticket quantity to one by adding the following code to the functions.php file of your child theme:
- To redirect users after they submit the RSVP form, we have an extension that you can try out, but please note that this is still in beta and is not supported. Just install it as you would any other plugin, and you will find the option to add the redirect URL under Events > Settings > Tickets.
- To move the ticket form, I would recommend taking a look at this article with instructions on how to do this in the settings. We also have an extension that will let you place the ticket form on the page with a shortcode.
/* Tribe, limit ticket qty */
function tribe_limit_tickets() {
?><script type="text/javascript">
jQuery(document).ready( function( $ ) {
// do this if tickets available
if ( $('.tribe-events-tickets').length ) {
// set max qty to 1
$('.tribe-events-tickets .tribe-ticket-quantity').attr('max', 1);
// run on input change
$('.tribe-events-tickets .tribe-ticket-quantity').change ( function ( ) {
// don't run the manually triggered change event
if ( $(this).val() == 0 ) return;
// make sure it's not more than 1
if ( $(this).val() > 1 ) $(this).val(1);
// change all inputs but this to 0
// manually trigger the change event so available stock gets updated
$('.tribe-events-tickets .tribe-ticket-quantity').not( $(this) ).val(0).change();
});
// add a oninput event
$('.tribe-events-tickets .tribe-ticket-quantity').on('input', function (e) {
$(this).change();
});
}
});
</script><?php
}
add_action('wp_head', 'tribe_limit_tickets');I hope this helps! Please let me know if you have any questions.
Thanks,
Jennifer
November 23, 2017 at 8:36 am #1390071Support 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 ‘I have not been able to customize event ticket plus’ is closed to new replies.
