WilloftheD
Forum Replies Created
-
Hi @doodoole,
Although we have limited support for customization, I’d like to point you in the right direction.
As per one of our devs:
The function tribe_tickets_buy_button() is also pluggable, meaning users can define their own custom version if they’d like.
There is a filter they can use if they want to show nothing. However, they would have to do some of the logic to check for remaining to stock themselves.
Here’s an example filter that checks tickets only:
add_filter( 'tribe_tickets_buy_button', function( $html, $parts, $types, $event_id ) { if ( empty( $types['tickets']['available'] ) ) { return []; } return $html; }, 100, 4);You could try something like this ⬆️.
Let me know if this helps.
Best,
AbzForum: Plugins
In reply to: [Event Tickets and Registration] Checkout Unavailable!Hi @eltsly. Glad that we could help you out with this one.
If you have some time to review, that would be amazing!
https://wordpress.org/support/plugin/the-events-calendar/reviews/Have a great week ahead.
Best,
AbzForum: Plugins
In reply to: [Event Tickets and Registration] PayPal setup doesn’t work yetHi @derulfdunkel, please do keep us posted. Have a great week ahead.
Forum: Plugins
In reply to: [The Events Calendar] Event Calendar – Won’t update new dateHi everyone; apologies for the delay here. We’re currently investigating this issue here. This is related to this thread as well: https://wordpress.org/support/topic/events-cannot-be-updated/.
For now, I’d recommend rolling back to the last working version 6.0.3.x of the plugin. https://theeventscalendar.com/knowledgebase/k/accessing-older-plugin-versions/#Installing_past_plugin_versions
I’d get back to you on this thread if there are updates.
Best,
AbzForum: Plugins
In reply to: [The Events Calendar] Adding extra text to the Event List pageHi @pete1889, good one. Please keep us posted, and feel free to tag @tristan083 if you have more questions. Have a great day.
Forum: Plugins
In reply to: [The Events Calendar] fixe for prime_term_cache()Hi @shawfactor, apologies for the delay here. I talked to one of our Devs, and it seems like it is related to another issue we’re working on.
We already created an internal bug ticket for this, and I added your case. Thanks for all the details. I will definitely pass it along to our devs.
I am unable to provide an exact date or time estimate for when this bug will be fixed, but you’ll be notified when there are any updates.
If you do have other concerns or issues you need help with, please create another ticket, as it helps us track different issues.
Again, thank you for your patience. Hang in there.
Best,
Abz
________________________Internal Bug Ticket Reference:
ECP-1416Forum: Plugins
In reply to: [The Events Calendar] Events cannot be updatedHi everyone, I appreciate you providing more details here. I am investigating further regarding this issue, and I’d get back to this thread whenever I learn more about this issue.
Apologies for the inconvenience. I’d recommend rolling back to the last working version 6.0.3.x of the plugin. https://theeventscalendar.com/knowledgebase/k/accessing-older-plugin-versions/#Installing_past_plugin_versions
Thank you,
AbzForum: Plugins
In reply to: [The Events Calendar] Calendar issue on mobileHi @msw2010, sorry to hear about this, and I do understand your frustration. I tried different browsers and OS (android and iOS). I still see this calendar view here: https://share.getcloudapp.com/04uy1q5B from this link: https://jazzbistro.ca/performance_calendar/.
The view on your screenshot is the view for v1, which is the legacy view. https://prnt.sc/Wc17S0V0CXgO
Could you follow these steps here?
- Try disabling and re-enabling Events → Settings → Display → Use Update Calendar Design
- Clear any Caching, Browser, or Third-party Plugin
- Then try Flushing Permalinks
Please let me know how it goes.
Best,
AbzForum: Plugins
In reply to: [The Events Calendar] Intermittent IssuesHi @daveatcos, this is definitely weird. Perhaps it would be good to do housekeeping from time to time on your site, which includes clearing caching both third-party plugins and server-side (if you have any) and flushing permalinks. Also, I suggest doing this whenever you upgrade or change Settings to ensure the pages load properly.
Rest assured that I’d be taking note of this as well. Appreciate the updates and clues here, Dave.
Best,
AbzForum: Plugins
In reply to: [The Events Calendar] Same breadcrumbs everywhere when plugin activeHi @colbi, sorry to hear about this. I’m curious, could you interchange the settings under Display → Default stylesheet used for events templates and Events template? Head over to Events → Settings → Display and try different settings for the page template.
See if that makes a difference and ensure that any template is not causing the issue.
Also, I’d recommend reaching out to the BeTheme team as well if they have a workaround for this one.
Best,
AbzForum: Plugins
In reply to: [The Events Calendar] 404Hi @lcbaron1, thanks for the updates here. Perhaps it was intermittent. It would be good if you could clear the browser cache as well.
No worries. I’d be closing this thread, and please do not hesitate to bump a new thread on our way. This is for us to track down topics/issues efficiently and for us to follow the WordPress Forum Guidelines.
Best,
AbzForum: Plugins
In reply to: [The Events Calendar] [EventCalendar] Event shows only a first dayHi @josefovo, it seems like a conflict with Baskerville Theme — I was able to replicate it, although it shows all the multi-events on the mobile view, not on the desktop.
See the screen recording here:
https://share.getcloudapp.com/nOu1weyyI’m curious, could you interchange the settings under Display → Default stylesheet used for events templates and Events template? Head over to Events → Settings → Display and try different settings for the page template.
See if that makes a difference and ensure that any template is not causing the issue.
Best,
AbzForum: Plugins
In reply to: [The Events Calendar] Problem French versionHi @bendl, no worries. Let’s see, just to be clear and if I understand correctly, the page is in English, and you’d want to mix it with French, like, for example, “Today”?
Rather than translation, could you try doing the WordPress way of changing the wording on a page? See the article here, to learn more → https://theeventscalendar.com/knowledgebase/k/change-the-wording-of-any-bit-of-text-or-string/
Let me know if that helps.
Best,
AbzForum: Plugins
In reply to: [Event Tickets and Registration] Margin leftHi @juanmaquintero, it seems like this has something to do with your theme. However, could you share the direct URL to the page you’re having issues with? I’d like to check and help you with this one.
Please do not share any credentials, and this is for us to follow the WordPress Forum Guidelines.
Looking forward to helping you with this one.
Best,
AbzHi @doodoole,
I am building a custom template and I have encountered something strange, when I use tribe_tickets_buy_button() to show “Niy now” button, it takes about 20+ seconds for page to load, without it page loads almost instantly.
I am curious. Could you share the direct URL to the page?
Please do not share any credentials, this is for us to follow the WordPress Forum Guidelines.
Reference to function:
https://docs.theeventscalendar.com/reference/functions/tribe_tickets_buy_button/What I am trying is to disable the “Buy now” button when the tickets are sold out. Maybe there is a command/function that is not that heavy loading.
I am not entirely sure, but I would definitely check with our team if we have any.
I’d get back to you with this one.
Best,
Abz