Forum Replies Created
-
AuthorPosts
-
Geoff
MemberHi @digitaliway and I hope you had a great weekend!
So glad to hear the ticket fieldset options did the trick — thanks for confirming. 🙂
I’m afraid that Event Tickets Plus does not currently support creating a custom order for how tickets are displayed.
That said, it is possible to change the order, but it does take some custom development to make it happen. Here is a guide that provides some tips for how to do that with specific code examples to help you get started:
Did you have any other questions specifically about the ability to create custom options in tickets? If so, please let me know and I’d be happy to help as best I can.
Cheers!
GeoffGeoff
MemberThanks for confirming, Mandy!
The “View Details” link will only be displayed if there is custom fieldset information to display. Otherwise, there is no information to reveal.
Do you know if custom ticket fields were set up for that particular event?
Thanks!
GeoffGeoff
MemberCool, thanks for confirming that!
You’ll want to refer to the WooCommerce docs for how the discounted price is fetched from the data but, once you have it, you can add it next to the original event cost that I mentioned above.
Cheers!
GeoffGeoff
MemberHi Rob and hop you had a great weekend!
The bundles are the best deal at the moment, but we do keep a list of our current and best deals posted over here for future reference:
https://theeventscalendar.com/deals-coupons-discounts/
I do want to noite that, even with Filter Bar, validating the venue with the geo-coordinates will be key to ensiring the events show up in the filtered results.
Cheers,
GeoffNovember 7, 2016 at 7:47 am in reply to: The ticket prices showing are not correct whenever ticket end date is reached #1188609Geoff
MemberThis reply is private.
November 7, 2016 at 7:34 am in reply to: Event Tickets Plus is not capturing attendee information #1188605Geoff
Member
So glad that did the trick! Thanks for letting me know and I hope you had a great weekend. 🙂
Cheers,
GeoffNovember 7, 2016 at 7:31 am in reply to: Import FB Events by community to sell their tickets #1188601Geoff
MemberThanks for voting, Friedrich! I appreciate that a lot. 🙂
You may want to consult with the customer who provided the solution, but I was able to get the Facebook inout field into the form this way:
- Make a copy of the following files: /wp-content/plugins/the-events-calendar-community-events/src/views/edit-event.php
- Make a new folder in your theme directory called tribe-events
- Make a new folder in that one called community
- Add the copied edit-event.php file to that folder
- Paste the code into edit-evemt.php where you would like the Facebook import field to display
That worked for me, but you will definitely want to reach out to either the customer who contributed that code or perhaps one of our recommended developers, should it not work for you or you have additional questions about how it works. 🙂
Cheers!
GeoffGeoff
MemberMy pleasure, Michael, and I hope you had a great weekend!
Definitely let us know if any other questions come up and we’d be more than happy to help. 🙂
Cheers,
GeoffGeoff
MemberHi Chris, and happy Monday!
We hear you loud and clear, but I think you may have misunderstood the pricing for Event Aggregator.
The service is $99 per year but currently (as of this writing) discounted t0 $89. This is the exact same price as the Personal-level licenses for both our iCal Importer and Facebook Events plugins, which Event Aggregator is designed to replace down the road.
The price includes up to 100 scheduled imports in a given day — not to be confused with 100 events per day since an import is capable of fetching thousands of events at once. The price also includes the ability to import from Facebook, iCalendar and ICS files, which is like getting the Facebook Events and iCal Importer plugins at a two-for-one rate. Factor in that you can also import directly from Google Calendar and Meetup.com and Event Aggregator not only replaces those two plugins, but is more powerful and with more features than any of our other import plugin offerings.
And, we also decided to provide a free Event Aggregator licenses to anyone with an existing Facebook Events and iCal Importer license. That means the two Event Aggregator licenses in your account were completely free of charge. We provided those licenses to you both so you could give the service a try and to help with the transition should you decide to use it. But there’s no obligation on your end to use it — you still have the legacy plugins and may continue to use those instead. We are hoping you love it though and see how it actually saves you money as someone who was paying for two plugins instead of one. 🙂
I hope this helps clarify things a bit! I see you had already marked this thread as Resolved, but I wanted to make sure we had a chance to add an additional hand to that clapping.
Cheers and hope you had a great weekend!
Geoff
Geoff
MemberExcellent! Happy to be of service and to hear that you’ve reached out to the LearnDash team as well. 🙂
Please let us know if any other questions pop up as you dig into the project and we’d be happy to help as best we can.
Cheers and have a great weekend!
GeoffGeoff
MemberTotally understandable, Ollie!
I’ve gone gone ahead and submitted a refund for your order and you should see the funds back in your account in the next 5-10 business days.
Thanks so much for giving the plugin a try and I’m sorry it didn’t work out, but I do hope you’ll keep us in mind for other projects in the future. 🙂
Cheers and have a great weekend!
GeoffGeoff
MemberHi Nauman,
you know, to be honest, I have not used either of those plugins personally, though they certainly do look promising.
My best advice is to start with The Events Calendar, which is a free download on WordPress.org:
If those plugins work with The Events Calendar, then it’s nearly a given that it will work when any of our other plugins are installed as well.
Cheers!
GeoffNovember 4, 2016 at 10:01 am in reply to: Woo Event Ticket Cart – Separate Tickets / Show Attendee Meta #1187823Geoff
MemberHi Steven,
Yeah, getting the ticket meta is admittedly a tedious tasks. It’s one of the few areas of the plugin that does not have a public function to easily fetch and echo the data and that is indeed something we have ticketed in our system to improve.
For the time being, I do have a working example of the ticket meta being called that you can use as a blueprint for your work:
$meta_fields = Tribe__Tickets_Plus__Main::instance()->meta()->get_meta_fields_by_ticket( $ticket['product_id'] );<$meta_data = get_post_meta( $ticket['qr_ticket_id'], Tribe__Tickets_Plus__Meta::META_KEY, true );
if ( empty( $meta_fields ) || empty( $meta_data ) ) {
return;
}foreach ( $meta_fields as $field ) {
if ( 'checkbox' === $field->type && isset( $field->extra['options'] ) ) {
$values = array();foreach ( $field->extra['options'] as $option ) {
$key = $field->slug . '_' . sanitize_title( $option );if ( isset( $meta_data[ $key ] ) ) {
$values[] = $meta_data[ $key ];
}
}$value = implode( ', ', $values );
} elseif ( isset( $meta_data[ $field->slug ] ) ) {
$value = $meta_data[ $field->slug ];
} else {
continue;
}// can use these vars to echo, etc:
// $field->slug
// $field->label
// $value
}I hope this helps!
Geoff
November 4, 2016 at 9:53 am in reply to: "Reset filters" feature somewhat counterintuitive when using search field #1187820Geoff
MemberHahaha! I love it. 🙂
Thanks again for all your feedback, dude. I’ll go ahead and close this thread but let’s aim to keep the dialogue on this one going in the feature request forum.
Cheers!
GeoffGeoff
MemberHi Mandy,
Thanks for following up!
Just to confirm: are you running Event Tickets 4.3.2 and Event Tickets Plus 4.3.2? If not, will you please update to the latest versions and check again?
Thanks!
Geoff -
AuthorPosts
