Number of tickets for RSVP

Home Forums Ticket Products Event Tickets Plus Number of tickets for RSVP

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1122667
    Fred
    Participant

    Hi.

    I have implemented to set the default number of tickets using a woocommerce plugin as per the following thread,

    Default number of tickets

    Now, there is another need to set the default value of number tickets for RSVP to “1”, and hopefully set the maximum to “2”.
    Could you please let me know how to implement this RSVP setting?

    Cheers, Fred

    #1122918
    Nico
    Member

    Hey Fred,

    Thanks for getting in touch – I’ll help you getting this right!

    TO modify RSVP tickets default and max quantities you’ll need to create a template override (as described in our themer’s guide) for the RSVP tickets form. The file is located at wp-content/plugins/event-tickets/src/views/tickets/rsvp.php, copy it over to wp-content/themes/active_theme/tribe-events/tickets/rsvp.php and once the copy is in place edit line 53:


    <input type="number" class="tribe-ticket-quantity" min="0" max="<?php echo esc_attr( $ticket->remaining() ); ?>" name="quantity_<?php echo absint( $ticket->ID ); ?>" value="0">

    Change the min, max and (default) value attributes to fit your needs 🙂

    Best,
    Nico

    #1122925
    Fred
    Participant

    Thanks Nico.

    Would these changes be OK if the theme is updated?

    #1123619
    Nico
    Member

    Hey Fred,

    Would these changes be OK if the theme is updated?

    If you are using a third-party theme, the changes need to be in a child theme to be safe in future updates. If you are not familiarized with child themes it’s quite simple, take a look: WordPress Codex > Child Themes. This should keep the changes safe 🙂

    Best,
    Nico

    #1130401
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Number of tickets for RSVP’ is closed to new replies.