Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Guy,
We have a fix ready but it has not shipped in a release yet. For now, please add the following snippet to your theme’s functions.php file: https://gist.github.com/jazbek/5959855
I hope that helps!
– Jonah
July 15, 2013 at 4:03 pm in reply to: Events List Widget: in which php doc is the "View All Events" Link located? #55301Jonah
ParticipantHi smallmammothdesign,
This text is located in /wp-content/plugins/the-events-calendar/lib/widget-list.class.php on line 114. This is not an override-able file so you’d either need to de-register the widget and register your own copy, or simply use this snippet to replace the text:
function filter_translations($translation, $text, $domain) {
if ($domain == 'tribe-events-calendar') {
switch ($text) {
case 'View All Events':
$translation = 'View Full Calendar';
break;
}
}return $translation;
}
add_filter('gettext', 'filter_translations', 10, 3);
I hope that helps but let me know if you need anything else.– Jonah
Jonah
ParticipantAlso, how many events total do you have on your website?
Jonah
ParticipantHi Kathleen,
That is very odd since WPEngine is some of the best hosting you can get. Have you tried clearing cache/CDN contents through the admin? Maybe there’s some old code or something that’s stuck and causing the slowness? After trying that, try clearing your permalinks by visiting Settings > Permalinks. If that doesn’t work either, then I would suggest deactivating all other plugins to see if another plugin could be conflicting with ours. Let me know how that all goes.
– Jonah
Jonah
ParticipantHi Jen,
The first thing to try to get around a theme conflict would be to switch the Event template setting in Events > Settings > Display. Sometimes that’s all it takes. Try that and let me know how it goes. Otherwise, we’d need to take a look at your theme and test things locally but let’s see what that setting change does first.
Thanks,
JonahJuly 15, 2013 at 3:50 pm in reply to: Change "Organizer" to "Contact" and "Venue" to "Location" #55293Jonah
ParticipantHi koledarcek,
The easiest way to do this is via a filter like so:
function filter_translations($translation, $text, $domain) {
if ($domain == 'tribe-events-calendar') {
switch ($text) {
case 'Venue':
$translation = 'Place';
break;
}
}return $translation;
}
add_filter('gettext', 'filter_translations', 10, 3);
With this approach you need to do each string individually. The alternative to this would be to edit the english translation files and change all the values to what you want them to be. Aside from that, any other approach is going to be even more hacky. I hope this helps but let me know if you have any other questions.– Jonah
Jonah
ParticipantHi kelligirl,
This is not a bug that I’ve heard anything about. Have you tried deactivating all other plugins to see if another plugin is conflicting? Is this happening with all recurring events or only some? Do you have an example I can test out with a recurrence pattern?
Thanks,
JonahJonah
ParticipantHi Gordon,
How were you selecting sidebars for your event listings before? Was this through your theme or via another plugin? We do not include this functionality in our plugin so it is likely something you will need to figure out on your own or hire someone to help you. I’ll try to help a little bit if you can give me some more information, but no guarantees as to whether or not I’ll be able to solve this for you. The more information you can give me, the better (code snippets, screenshots, screencasts, etc.)
Regards,
JonahJonah
ParticipantH vshoward,
Sure, all you need to do is make a copy of /wp-content/plugins/the-events-calendar/views/month/loop-grid.php and place in a ‘tribe-events/month’ folder in your theme. Then replace line 29 with this new code: http://snippi.com/s/7mljyot
I hope that helps!
– Jonah
July 15, 2013 at 2:48 pm in reply to: Is it possible to get Events posts included in the RSS feed for the blog? #55276Jonah
ParticipantHi Cynthia,
I am still looking into the feasibility of this with our plugin. As you know, the old instructions for this no longer work and I created a ticket to have one of our developers take a look. I haven’t heard back yet but will post back here as soon as I do.
Thanks for your patience,
JonahJuly 15, 2013 at 2:04 pm in reply to: Category page, the upcoming events widget shows page not found #55267Jonah
ParticipantHi ellaearth,
Do you have an example I can take a look at? Have you tried deactivating all other plugins to rule out a conflict?
Thanks,
– JonahJuly 15, 2013 at 2:02 pm in reply to: Genesis Responsive Slider doesn’t pull from ‘featured’ category #55266Jonah
ParticipantHi Marc,
Can you provide some code examples of what you have setup in order for events to show up in the slider? Please post them to http://snippi.com/ – things may have worked in 2.x but 3.x is a completely reengineered plugin so your customization might need to be modified and since this is something separate from our plugin there might not be too much we can do for you but I’ll do my best with what I can tell from the code you can provide me.
By default our plugin does not include support for tag archives. This is something you would need to configure and get working on your own. If you can provide some samples of code you are working with in order to get this working I’ll see what I can do but no guarantees.
Thanks,
JonahJonah
ParticipantSounds good Stacey, let us know what you find in the local environment.
Thanks,
JonahJonah
ParticipantHi siamack,
Do you have some examples I can look at?
Thanks,
– Jonah -
AuthorPosts
