Brian
Forum Replies Created
-
Forum: Plugins
In reply to: [Coupon Creator] Coupons Not ShowingHi malpert
I can help out here, but..
To quote the forum guidelines:
Posting your own topic is smiled upon.
You can use the WordPress Export and Import system to export the coupon posts and import them in another site.
There is no other feature to do this in the Coupon Creator.
Cheers
Forum: Reviews
In reply to: [Coupon Creator] 5-Star Rating All Day LongThanks for the review! Glad it works well for you and it always helps me during development to see reviews from people using the plugins.
Thanks again for using the Coupon Creator!
Forum: Reviews
In reply to: [Coupon Creator] GREAT Coupon PluginThanks for the review. It always helps to get reviews and feature requests to keep the plugin moving forward.
Forum: Reviews
In reply to: [Coupon Creator] Awesome! The best coupon plugin available!Thanks for the review. Glad you like the plugin simple is what I have always worked for!
Forum: Plugins
In reply to: [The Events Calendar] Where are the download links for all of add-ons?Hi,
The Filter Bar is a separate add on. So if you only bought Pro that is all that would show. Please note each add on is a separate purchase and if all you want is the Filter Bar Features we can exchange the license.
To do that or if you have more questions please post in the customer forums:
https://theeventscalendar.com/support/forums/
As this forum is for The Events Calendar only.
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Mobile calender not workingHi,
I looked at the site and did not see the change the snippet does to fix the issue.
Maybe it did not work in the code snippets plugin? Can you try in your child theme?
Forum: Plugins
In reply to: [The Events Calendar] Call to undefined function tribe_get_date_option()Hi,
We resolved the error in The Events Calendar 4.0.5 and it is ready to be updated.
I have tested it myself and the fatal error is no longer occurring in List or Month View
Let us know if you have any issues though.
Thanks
Hi,
Thanks for using the Events Calendar.
Here on the WordPress.org forum, I’m afraid we do not provide technical support for our premium plugins. I would ask that you take any technical support questions across to our premium forum where we will respond to you within 24 hours during the week:
https://theeventscalendar.com/support/forums/
Thanks again!
Forum: Plugins
In reply to: [The Events Calendar] Call to undefined function tribe_get_date_option()Hi Thomas,
Thanks for reporting this.
We attempted to fix another issue and caused this new problem.
We have rolled back the release and please use the Events Calendar 4.0.4.
You mentioned you already downgraded, but for others.
If you have The Events Calendar 4.0.5 installed please follow these steps to manual downgrade it:
https://theeventscalendar.com/knowledgebase/manual-updates/
And you can get the Events Calendar 4.0.4 as the main download right now here on WordPress.org
Let me know if you continue to have issues after downgrading.
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Mobile calender not workingHi,
Sorry for the issues you are having here.
I see you are using Genesis Theme and there is a conflict causing this.
However, we have a fix if you add this snippet added to your child theme’s functions.php will fix the issue.
https://gist.github.com/jesseeproductions/0a4af5a83500f82af6ac
This resolved the issue on my test site, let me know if that does it for you.
Thanks
Forum: Plugins
In reply to: [The Events Calendar] TEC on genesis framework?Ok thanks for the information. That makes sense. I will put it on the list to look into when we update the Genesis Guide next.
Thanks!
Forum: Plugins
In reply to: [The Events Calendar] TEC on genesis framework?Hi,
I am not having issues with the genesis_site_layout so not sure why you are.
I am hesitant to change it without getting more feedback from other people having the same issue as of right now you are the only one that has reported it.
Thanks for the feedback though it is something to consider.
Forum: Plugins
In reply to: [The Events Calendar] Calender not Displaying Monthly ViewHi,
Thanks for using TEC. I can help out.
I see you are using the Canvas theme.
By default their template does not show the calendar as it is setup as an archive.
There is a way around it and involves modifying a template.
You can do this in the theme itself, but it is better to create a child theme and add the modified template there.
The template to change is this one:
themes\canvas\content-page.php
In that file you want to find this coding:
if ( ! is_singular() ) { the_excerpt(); } else { the_content( __( 'Continue Reading →', 'woothemes' ) ); }And replace it with this:
if ( class_exists( 'Tribe__Events__Main' ) && tribe_is_event_query() ) { the_content( ); } elseif ( ! is_singular() ) { the_excerpt(); } else { the_content( __( 'Continue Reading →', 'woothemes' ) ); }That worked for me to show the calendar. Let us know if that works for you.
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Events not showing on mobile devicesHi,
Sorry for the issues you are having. I can help out.
Are you using the Genesis Theme? Even if you are not the below snippet might work to resolve this, so please try it.
Add this snippet added to your child theme’s functions.php to try to resolve this:
https://gist.github.com/jesseeproductions/0a4af5a83500f82af6ac
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Changing The Page TitleHi BeastCode & Kburrows,
That title is in your theme coding and not in our plugin so we are limited in providing a solution and do not have the information to even know where that would be in the theme.
Our plugin setups the Events Views as an archive and we have these conditionals to to target specific views:
https://gist.github.com/jesseeproductions/903f5ca75877b713c674
Using those conditionals you could find the function that displays the title in your theme and modify the output on the Event Views or remove it if you like.
That is about all we can provide on theme compatibility issues unfortunately.
Please note to we respond once a week on the WordPress.org forums to support threads.
Thanks