Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi,
Are you trying to get a iCal feed from your site?
If so the month view has a iCal link at the bottom for that month’s events.
If you are looking for a custom range I have this snippet to create one:
https://gist.github.com/jesseeproductions/c31f054709ca7eb9b779
You could add that to your theme’s functions.php and then use this link to get a iCal file or feed:
http://yoursite.com/events/?ical=1&full-exportYou will want to change the date here to the range you would like:
$query->set( 'end_date', '2015-12-31' );
Does that work?Brian
MemberHi,
This is a duplicated of this ticket:
So we will help you there and close this one.
Thanks
October 7, 2015 at 1:17 pm in reply to: Recurring events look different in event list on home page #1012461Brian
MemberHi,
I visited your site again and now I see it working correctly.
Were you able to fix it?
October 7, 2015 at 1:14 pm in reply to: Hide Category from Main Calendar, but not Category Calendar #1012460Brian
MemberHi William,
Thanks for posting here. I can certainly help you here, but we can help you better if you create your own topic in the forum, where we can interact with you one on one. Also, we encourage you to post on your own topic because every time we post it will email the author of the topic.
Having said that this snippet might work for both of you:
https://gist.github.com/jesseeproductions/a467b28a8b8010d4015b
Add that coding to your theme’s functions.php and then replace the slug ‘tech’ with the slug of the event category you are trying to remove from the Month and List Views.
Thanks
October 7, 2015 at 1:09 pm in reply to: Calendar Pro Widget not loading once you click previous or next month arrows #1012456Brian
MemberHi,
It looks like some of the scripts on the site uses $() and some start with jQuery(). WordPress supports the later, so the script I gave is breaking the $() scripts.
This script might help load a version of jQuery that prevents this. Remove the first script I gave and then try this in its place:
// Remove themes old version of jQuery and load a compatible version
if ( ! is_admin() ) {
add_action( "wp_enqueue_scripts", "tribe_jquery_enqueue", 11 );
}
function tribe_jquery_enqueue() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', "http" . ( $_SERVER['SERVER_PORT'] == 443 ? "s" : "" ) . "://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js", false, null );
wp_enqueue_script( 'jquery' );
}Let me know how that works out.
Thanks
Brian
MemberHi,
Thanks for using our plugins. I can help out here.
To edit any of the event templates we have our themer’s guide:
https://theeventscalendar.com/knowledgebase/themers-guide/
To show you how to move and edit a template in your theme.
Following that guide you could go to the month template and remove the next call for the template to now show it. However, if you are just going to overwrite the template I would use a template such as the list or photo view instead.
There is also this list of conditionals I have that might help out too:
https://gist.github.com/jo-snips/2415009
Let me know if you have any follow up questions.
Thanks
October 7, 2015 at 6:40 am in reply to: Hide Category from Main Calendar, but not Category Calendar #1012254Brian
MemberHi,
Thanks for using our plugins. I can help out here.
I think I can help you add a conditional to fix this.
If you add this in your conditional check:
&& !is_tax()It should prevent the snippet from running on the category views.
If you are unsure where to put it, please post a link to the snippet or copy it into a reply.
Let me know what you find out.
Thanks
Brian
MemberHi,
Sorry for the issues you are having. I can help out here.
I see you are using a Child Theme for Genesis and there is a strange issue that happens in Genesis that causes this.
Follow the steps outlined in this guide to fix it:
See if adding that resolves the issue.
Also, on that page are other Genesis specific coding that might help to.
I created them all so let me know if you have any questions.
Thanks
October 7, 2015 at 6:33 am in reply to: Can't figure out why my 'list' view isn't working on my calendar #1012235Brian
MemberHi,
Thanks for using our plugins. I can help out here.
I visited your site and see what you mean.
It looks like something in the List View is causing an error that prevents the footer from loading, which maybe causing this.
Do you have any custom templates in your theme for the events calendar list view?
They would be found here:
yourtheme/tribe-events/list/
Let me know and we can go from here.
Thanks
Brian
MemberHi,
Thanks for the information and I do not think the error log will be helpful if the errors are all the same as reported. I think you could empty the log for now so we only see new warnings and errors.
Yep that is where the warnings are occurring, but I am not able to replicate or seen other reports. So it is unclear why it is happening and since it is in the middle of the coding the only fix would be to edit the plugin. Before that happens I would like to know why.
I looked at it again and the function running is the save pending events, which could be running from a cron to update existing recurring events as it is around the same time everyday.
Do you have any long running recurring events? It maybe updating those on the cron and since they were created before 3.12 they might be missing information, which causes these warnings.
Let me know.
Thanks
Brian
MemberHi,
Thanks for providing the theme.
I loaded the theme and it reproduced the issue you had right away.
It was a little tricky to get working, but I Found if I set these two settings to this it worked for me:
X Theme Setting:
Appearance > Customize > Blog > “Full Post Content on Index” Set to > OnThe Events Calendar Settings:
Events > Settings > Display Tab > “Events template” Set to > Default Events TemplateIf you change those two settings does that resolve the issue?
Brian
MemberYou’re Welcome.
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberWhen we release a new version of the plugin the file names will be correct or we will fix that.
If someone manually downloads it for now they are going to have to change the filename.
To many things are up in the air about the translation system on .org for us to want to make changes right now.
Again this is something for us to consider if we want to stick with this system or take it back over when we reevaluate it.
Thanks
October 7, 2015 at 5:19 am in reply to: Calendar Pro Widget not loading once you click previous or next month arrows #1012183Brian
MemberHi,
Thanks for doing the testing.
I took a look at your source coding again and see your theme is loading an old version of jQuery:
http://www.ralsc.org/wp-content/themes/CherryFramework/js/jquery-1.7.2.min.js
WordPress ships with jQuery 1.11.3 and that is the version we support.
So that looks to be the issue since the widgets testing did not find a problem there.
The best way to resolve this is to update your theme or the Cherry FrameWork in your theme to the latest version, but I am not sure how possible that is if the theme was customized.
Another option is try this coding in your theme’s functions.php:
// Remove themes old version of jQuery and load a compatible version
if ( ! is_admin() ) {
add_action( "wp_enqueue_scripts", "my_jquery_enqueue", 11 );
}
function my_jquery_enqueue() {
if ( ! $guessurl = site_url() )
$guessurl = wp_guess_url();wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', $guessurl . '/wp-includes/js/jquery/jquery.js', array(), '1.11.3' );
wp_enqueue_script( 'jquery' );}
This worked for me to load the latest version of jQuery shipped with WordPress. It could work for you, but I would backup your site before adding it and it is unclear how the other scripts on your site will react and if it might create new problems so I would be prepared to test for other issues.
That is about all I have for fixing a theme loading an old version of jQuery and I am limited in fixing 3rd party coding beyond this. So if you would like a refund please follow our policy outlined here:
And we can take care of it. Thanks
Brian
MemberHi Cliff,
Thanks again for this it is something we are interested in, but we would like to talk with Reid on how to proceed. He is out for the next week though.
So we will bring it up with him once he gets back and them reply here or to you personally on the next steps we like to take.
For now I will close this thread to new replies.
Thanks Again
-
AuthorPosts
