Forum Replies Created
-
AuthorPosts
-
Victor
MemberHi there!
Just wanted to share with you that a new Feature Release 4.5 of The Events Calendar is out, which includes a fix for both of your issues 🙂
Find out more about the release → https://theeventscalendar.com/release-the-events-calendar-4-5/
Please update the plugins and let us know if the fix works for your site.
Best,
Victor.Victor
MemberHi there!
Just wanted to share with you that a new Feature Release 4.5 of The Events Calendar is out, which includes a fix for this issue 🙂
Find out more about the release here → https://theeventscalendar.com/release-the-events-calendar-4-5/
Please update the plugins and let us know if the fix works for your site.
Best,
Victor.Victor
MemberHi there!
Just wanted to share with you that a new Feature Release 4.5 of The Events Calendar is out, which includes a fix for this issue 🙂
Find out more about the release here → https://theeventscalendar.com/release-the-events-calendar-4-5/
Please update the plugins and let us know if the fix works for your site.
Best,
Victor.Victor
MemberHi there!
Just wanted to share with you that a new Feature Release 4.5 of The Events Calendar is out, which includes a fix for this issue 🙂
Find out more about the release → https://theeventscalendar.com/release-the-events-calendar-4-5/
Please update the plugins and let us know if the fix works for your site.
Best,
Victor.May 1, 2017 at 1:33 pm in reply to: Download PDF not working for logged out users, and more… #1276916Victor
MemberHi Dirk!
Thanks for reaching out to us. We really appreciate your feedback on this!
1. only works for logged in users so customers buying a ticket without registration can’t click the link since they’re send to the homepage. Is this intentional or am I missing something?
Unfortunately, this is something that has not been taken into account, so I have created a bug report and linked this thread to it. The team will let you know as soon as a fix for it is released in a future version of the extension.
2. We use a child theme with the custom tribe-events folder to customize the tickets that are sent out (the whole idea off the HTML tickets right?). Unfortunately, when we have the custom email.php in the folder (updated but customized) the pdf shows up blank
I’ve tried making a template override in a child theme and it worked for me. What happens if you don’t override the email.php template? Does the pdf work or is it still a blank page? Let me know.
Thanks again for taking your time on reporting this.
Best!
VictorVictor
MemberHi Nadja!
I’m sorry you are experiencing this issue. Let me try and help you troubleshoot this.
This could be a theme or plugin conflict, I will ask you to go through the complete steps in this guide > https://theeventscalendar.com/knowledgebase/testing-for-conflicts/
Please let me know what you find in the process.
Thanks,
VictorVictor
MemberHi Cath!
Thanks for reaching out to us!
We don’t currently have a way to list all the sales for a specific organiser. You can access all the orders for a specific event by following the steps in the this article > https://theeventscalendar.com/knowledgebase/tracking-sales-getting-paid/
I can see the use in having a list of sales for a specific organiser. I did try looking for this idea in our User Voice but could not find anything related. So you might want to post it as a new feature idea so others can vote for it and can be taken into account for a future implementation.
If you have any questions about posting that, please let me know and we’ll be happy to help.
Best!
VictorVictor
MemberHi Mousset!
Thanks for getting in touch! 🙂
Unfortunately, that is not something already built-in into the tribe bar functionality. It may be possible but would definitely involve custom coding.
Bear in mind, that the search input searches for keywords in the events, but the geoloc input searches for places using the Google Maps API.
You might want to check out our Filter Bar plugin. It may not be exactly what you are looking for but it has some powerful capabilities to filter by country, city, state and many other filters like venue, organizer and more.
I hope that helps and let me know if any other question.
Best!
VictorMay 1, 2017 at 7:01 am in reply to: Cannot import from Google Calendar – import stops on 10 events. PHP Errors #1276687Victor
MemberThis reply is private.
Victor
MemberHey Patti!
I’m glad it worked for you! Thanks for letting us know and share your answer so others having the same problem can try this out.
I’ll go ahead and close this thread, but feel free to open a new one if anything comes up and we’ll be happy to help. 🙂
Good luck with your projects!
VictorVictor
MemberRight on Jake! I’m so glad to hear that worked out for you and I appreciate you following up to let us know. Definitely keep us posted if any other questions come up and we’d be happy to help.
Cheers!
VictorVictor
MemberThis reply is private.
Victor
MemberThis reply is private.
Victor
MemberHi Cath!
First off, I do want to note that we are fairly limited in how much we can support custom development questions like this.
That said, I’d be happy to at least point you in the right direction as best I can. We also have a list of freelancers who we would happily recommend for this level of help.
Having a deeper look at the code I found out the approach I gave you for customizing the template files is not ideal. Instead, you could try adding the following snippet of code into your theme’s functions.php file:
/**
* Events Calendar Pro
* Shows only weekends (Fri - Sat - Sun) in week view
*/
add_action('tribe_events_week_get_days','custom_tribe_events_week_get_only_weekends');
function custom_tribe_events_week_get_only_weekends($days){
foreach ( $days as $i => $day ) {
if ( $day > 0 && $day < 5 ) {
unset ( $days[ $i ] );
}
}
return $days;
}Bear in mind you should avoid setting “Week Starts On” other than weekend days, to prevent any PHP warning messages from showing.
Please let me know if it works for you.
Best!
VictorVictor
MemberHi Travis!
Thanks for getting in touch with us and for using our plugins! 🙂
First off, I do want to note that we are fairly limited in how much we can support custom development questions like this.
That said, I’d be happy to at least point you in the right direction as best I can.
Here’s a css snippet you can try adding to your theme’s styles:
.tribe-event-tickets-plus-meta-attendee {
column-count: 2;
}
.tribe-event-tickets-plus-meta select {
width: 90% !important;
}
.tribe-event-tickets-plus-meta input[type="text"], .tribe-event-tickets-plus-meta input[type="email"], .tribe-event-tickets-plus-meta input[type="url"], .tribe-event-tickets-plus-meta input[type="password"], .tribe-event-tickets-plus-meta textarea {
width: 90% !important;
}
This seemed to do the trick when I tested it on your site. Does it work for you as well? Please let me know.Cheers!
Victor -
AuthorPosts
