simpletheory

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: Capacity for tickets not working #1552631
    simpletheory
    Participant

    mastermcc, that worked for me. Thanks!

    in reply to: Capacity for tickets not working #1552550
    simpletheory
    Participant

    Same issue here. Trying to change the capacity to anything does not save and still shows as unlimited (although tickets are available for purchase on the front end).

    in reply to: Disable RSVP Option #1546459
    simpletheory
    Participant

    Thank you Jaime!

    in reply to: Disable RSVP Option #1545935
    simpletheory
    Participant

    Hi Jaime, thanks for the tip. I may be overlooking something in the documentation but where does the meta-box.php file go in the child theme?

    For this purpose I just needed to hide the button, which I have done in CSS. But for future reference I’d still like to know how to override the admin view.

    Thanks,
    Tam

    in reply to: Adding content to ticket email body #1527746
    simpletheory
    Participant

    Thanks Jennifer. I have resolved the issue with help from another developer.

    in reply to: Adding content to ticket email body #1524899
    simpletheory
    Participant

    Jennifer, thanks for the quick response. I’ve seen that post with the code snippet but I haven’t found the right combinations for my purpose yet.

    The username and email address are collected through the WooCommerce billing details at checkout. If the current email is displaying the billing first/last name, I might be able to figure out how to retrieve these two items.

    I’m looking at the header comment of email.php file and it references “This file is being included in events/lib/tickets/Tickets.php in the function generate_tickets_email_content.”, but I can’t seem to locate Tickets.php. Could you please point me there?

    in reply to: Ticket quantity auto set to 1 #1503324
    simpletheory
    Participant

    I was able to set my default value to one with jquery, and also limit one ticket per purchase. If you don’t want to limit it, just remove the prop() at the end. Also make sure the input class name matches yours.

    <script type=”text/javascript”>
    jQuery(document).ready( function () {
    jQuery( ‘input.input-text.qty.text’ ).val( 1 ).prop( ‘readonly’, true );
    });
    </script>

Viewing 7 posts - 1 through 7 (of 7 total)