Geoff

Forum Replies Created

Viewing 15 posts - 4,111 through 4,125 (of 10,150 total)
  • Author
    Posts
  • in reply to: Modifying #1092956
    Geoff
    Member

    Hi AJ,

    Great question–that Tickets heading is located in the following template:

    /plugins/event-tickets-plus/src/views/wootickets/tickets.php

    If you create a new folder in your theme directory called tribe-events, then another folder in that one called wootickets, then you can drop a copy of that template in that folder and change this line:

    <h2 class="tribe-events-tickets-title"><?php esc_html_e( 'Tickets', 'event-tickets-plus' ) ?></h2>

    …to this:

    <h2 class="tribe-events-tickets-title"><?php esc_html_e( Booking', 'event-tickets-plus' ) ?></h2>

    Will that work for you? Please let me know. 🙂

    Cheers!
    Geoff

    in reply to: Attendees from Facebook tracking #1092951
    Geoff
    Member

    Hi Lera,

    Good question. Our Facebook Events plugin does import events from Facebook into WordPress, but I’m afraid not attendees. I’m also not sure what that would take to accomplish or whether the Facebook API even allows it, but it is certainly worth considering as a future feature. In fact, there is an open request for this in our feature request forum if you would like to add your vote.

    Sorry for the bad news, but does this help answer your question? Please let me know.

    Thanks,
    Geoff

    in reply to: Register 1 ticket at a time? Custom fields? #1092946
    Geoff
    Member

    Yeah, that’s certainly a possibility! You could even use jQuery to select the quantity and then use CSS to hide the quantity selector from there.

    in reply to: Hide "Who's Attending" by default #1092942
    Geoff
    Member

    Right on! Thanks for following up to let me know. 🙂

    Cheers,
    Geoff

    in reply to: Ical importer #1092885
    Geoff
    Member

    Hey Mike,

    That’s a great question! I honestly did not know the answer but, in giving it a try, it appears that iCal Importer will only import content from a hosted .ics file so, unfortunately, that means RSS feeds are not supported by that plugin.

    There are a number of RSS post importers in the WordPress.org directory. I would imagine one of them would support custom post types and perhaps allow you to import a post from other external sites and assign it to the Event custom post type.

    Sorry for the bad news, but does this help answer your question? Please let me know.

    Thanks,
    Geoff

    Geoff
    Member

    Thanks @mcon! So glad that did the trick.

    This hasn’t changed as far as I know. To my knowledge, tickets have always needed a start and end date declared on them, unless tickets are meant to be available indefinitely. The same is true of events on the calendar in general — past events remain on the calendar as part of the archive of events rather than being removed from the calendar.

    It’s quite possible there were customizations on the site at one point that changed that behavior, but it’s tough for me to tell. Either way, I’m super glad that adding the end date resolved the issue and that things are working smoothly! Thanks for following up to let me know. 🙂

    I’ll go ahead and close this thread but do please feel free to hit us with a new one if any other questions pop up and we’d be happy to help.

    Cheers!
    Geoff

    in reply to: Register 1 ticket at a time? Custom fields? #1092877
    Geoff
    Member

    Hi Luis and thanks for reaching out. 🙂

    I’m afraid that limiting RSVPs to one at a time is not currently possible in Event Tickets. You can, however, add custom fields to RSVPs with Event Tickets Plus installed and use them to collect attendee information on those RSVPs. We have a handy article on how those fields work and here’s a screenshot of how that looks on the back end.

    Does this help answer your question? Please let me know.

    Cheers!
    Geoff

    in reply to: Hide "Who's Attending" by default #1092871
    Geoff
    Member

    Hi Andy,

    Sorry about that! We definitely are working on a way to hide that option by default. In the meantime, here’s a snippet you add to your functions.php file to disable it across the board:

    /**
    * Disables the public attendee lists on all events
    *
    * Removes the tribe_events_single_event_after_the_meta action that injects the attendee
    * list that was introduced with the initial 4.1 release of Event Tickets Plus
    */
    function disable_attendee_list_on_post() {
    if ( ! class_exists( 'Tribe__Tickets_Plus__Attendees_List' ) ) {
    return;
    }
    
    remove_action(
    'tribe_events_single_event_after_the_meta',
    array(
    Tribe__Tickets_Plus__Attendees_List::instance(),
    'render'
    ),
    4
    );
    }
    
    add_action( 'wp', 'disable_attendee_list_on_post' );

    Please give that a try and let me know if it helps do the trick.

    Thanks!
    Geoff

    Geoff
    Member

    Excellent, thanks!

    It looks like the ticket is missing a start and end date for sale. If you add an end date/time to it, then then it will stop sale of the ticket and the form will no longer appear on the event.

    Does that make sense and does filling in those dates do the trick? Let me know. 🙂

    Thanks!
    Geoff

    Geoff
    Member

    Hey Jonathan,

    Thanks for following up and for setting up the test site — that’s a huge help!

    Yes, let’s try reactivating one plugin at a time and testing the form with each activated plugin. That’s the best way to pinpoint which plugin is conflicting. From there, it’s probably best to reach out to that plugin author directly, but I’d be happy to check it out as well for anything we can possibly do on our end.

    Thanks!
    Geoff

    in reply to: Does your system support non-ticketed registrations? #1092861
    Geoff
    Member

    Hi Shawn,

    I see my last reply was marked as the correct answer–I’ll go ahead and close this thread but please do feel free to let us know if any other questions pop up and we’d certainly be happy to help. 🙂

    Cheers,
    Geoff

    Geoff
    Member

    This reply is private.

    in reply to: What are the color bars and how do I control them? #1092616
    Geoff
    Member

    Hello @clarity,

    Good question. The Events Calendar actually does not include any color coding. Are you using the Category Colors plugin, by chance? It sounds like that might be the case and, if so, those settings would be under Events > Settings > Category Colors — at least going by the screenshots that are provided on the plugin’s page.

    Let me know if that is the case and we can go from there. 🙂

    Thanks!
    Geoff

     

    in reply to: How to get rid of sidebar on Events page #1092612
    Geoff
    Member

    Thanks for following up, Stacie! I’m glad to hear all is good. 🙂

    Colby — you can change the template by heading to Events > Settings > Display and choosing the Default Event Template.

    Cheers!
    Geoff

    in reply to: Hide Category Events from the Add Event screen? #1092607
    Geoff
    Member

    Phew! I’m so glad to hear everything is running smoothly and I appreciate you following up to let us know. Definitely feel free to hit us with a new thread if any other questions pop up and we’d certainly be happy to help. 🙂

    Cheers,
    Geoff

Viewing 15 posts - 4,111 through 4,125 (of 10,150 total)