Forum Replies Created
-
AuthorPosts
-
September 6, 2012 at 2:52 pm in reply to: Calendar widget current day – Link current and future day #24662
Jonah
ParticipantHi Michael, yes this is possible. I have a snippet which will make this work. First make a copy of /wp-content/plugins/the-events-calendar/views/table.php and place in an ‘events’ folder in your theme. Then open it up and find lines 102-106 that look like this:
if( function_exists('tribe_get_linked_day') && count( $monthView[$day] ) > 0 ) {
$return .= tribe_get_linked_day($date, $day); // premium
} else {
$return .= $day;
}
…and replace with the following:
if( function_exists('tribe_get_linked_day') ) {
$date = tribe_get_start_date( '', false, 'Y-m-'.$day.'' );
$return .= ( count($monthView[$day]) ) ? "$day" : $day;
} else {
$return .= ( count($monthView[$day]) ) ? "$day" : $day;
}
I hope that helps but let me know if you need anything else.– Jonah
Jonah
ParticipantHi David,
I don’t think this is currently possible without some sort of custom code or hack and it’s more involved than I can afford to spend time on. You can certainly create your own custom loops wherever you want using tribe_get_events() or WP_Query but that’s going to be tricky tying into the links you’re building for the calendar widget (i.e. to automatically create the custom loops for each month link).
You can also modify any of the event pages, including the list page by using pre_get_posts to affect the query and pass in start/end dates. The tricky thing with this is you’ll need to pass some sort of variable when someone clicks on the month in the calendar widget, and then detect what month was clicked on and convert that into your start/end date in the pre_get_posts function. I know, sounds messy but I can’t think of any other way.
I hope that helps and points you in the right direction! Good luck!
– Jonah
Jonah
ParticipantHi Jonny,
So I heard back from the developer and we have a filter for the linked calendar days which you should be able to use to change the format. The filter is tribe_get_linked_day() and you can find it in /wp-content/plugins/events-calendar-pro/template-tags.php
I hope that helps but let me know if you need anything else.
– Jonah
Jonah
ParticipantHi Lucia,
First, make sure you are running the latest versions of all event related plugins and WordPress. Then, if you’re still having issues, try deactivating all other plugins to see if there’s maybe a conflict going on. If that doesn’t work either try switching to the Twenty Eleven theme to see if it’s a problem with your theme. Let me know how that goes.
Thanks,
JonahJonah
ParticipantHi Tim,
Sorry to hear things didn’t work out for you. I’m going to have Rob on our support team help you with this. Stay tuned.
Thanks,
JonahSeptember 6, 2012 at 7:40 am in reply to: tribe_calendar_mini_grid Next/Previous Not Functioning #24627Jonah
ParticipantHi David,
Sounds good. Let us know if there’s anything else you need help with!
– Jonah
September 6, 2012 at 7:39 am in reply to: Calendar page title shows title of an event (continued) #24626Jonah
ParticipantSweet! I’m closing this thread then.
Thanks,
JonahJonah
ParticipantHi Kristy,
My suggestion would be to overwrite the existing plugin files/folders in wp-content/plugins/events-calendar-pro with the files/folders in the 2.0.8 zip file.
I hope that helps but let me know if you need anything else.
– Jonah
September 5, 2012 at 7:29 pm in reply to: Get Invalid Country code when adding new event to Eventbridge via wordpress #24604Jonah
ParticipantHi Adam,
Sorry about this. Can you actually provide access to support [at] tri [dot] be instead or post the screencast somewhere else that is public? http://www.techsmith.com/jing.html is a great option for this.
Thanks,
JonahJonah
ParticipantHi Jon,
Sorry for the delay on this. I’m not exactly sure what the problem could be. I’m going to have some other team members take a look and will follow up tomorrow. Thanks for your patience.
– Jonah
Jonah
ParticipantHi Javier,
Nice work on the website!
You can change the date displayed in your list.php view template. Make a copy of /wp-content/plugins/the-events-calendar/views/list.php and place in an ‘events’ folder in your theme and then change the code as you see fit.
I hope that helps but let me know if you need anything else.
– Jonah
September 5, 2012 at 6:38 pm in reply to: Calendar will not display when using WooThemes Whitelight theme #24600Jonah
ParticipantSounds good Jordan, let me know how it goes without the subdomain.
Thanks,
JonahSeptember 5, 2012 at 4:14 pm in reply to: Calendar will not display when using WooThemes Whitelight theme #24597Jonah
ParticipantHi Jordan,
I got your email and access to your website, thank you. I’m still not quite sure what’s going on here. Have you tried deactivating all other plugins to see if there’s a conflict? I haven’t tried testing with the Whitelight Commerce theme so maybe try it without that. Also, I wonder if this is an issue with the subdomain for some reason? It works fine for me with the base Whitelight theme and I’m not using a subdomain in my local dev environment. Can you test it without a subdomain?
Let me know if you have any luck with any of those steps.
Thanks,
JonahSeptember 5, 2012 at 8:42 am in reply to: tribe_calendar_mini_grid Next/Previous Not Functioning #24584Jonah
ParticipantHi David,
I was just informed that there is a bug when using the widget via the_widget() call. We’ve got this slated to be fixed in a future release. For now your only option is to create a sidebar area and add the widget that way. Sorry for the inconvenience.
Cheers,
JonahSeptember 4, 2012 at 7:50 pm in reply to: Calendar will not display when using WooThemes Whitelight theme #24566Jonah
ParticipantHi Jordan,
Sorry for the delay in a followup here. I have the Whitelight theme and it works fine for me. Have you tried changing the Events Template option in Events > Settings > Template? How about deactivating all other plugins to see if there is a plugin conflict going on?
If neither of those things works I’d like to take a look at your administration area. Can you please email access to pro [at] tri [dot] be and reference this thread.
Thanks,
Jonah -
AuthorPosts
