Jonah

Forum Replies Created

Viewing 15 posts - 196 through 210 (of 4,001 total)
  • Author
    Posts
  • in reply to: Where did my Calendar go #55302
    Jonah
    Participant

    Hi 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

    Jonah
    Participant

    Hi 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

    in reply to: Calendar & Calendar Widget Load Extremely Slow #55298
    Jonah
    Participant

    Also, how many events total do you have on your website?

    in reply to: Calendar & Calendar Widget Load Extremely Slow #55297
    Jonah
    Participant

    Hi 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

    in reply to: Calendar Widget Broken #55295
    Jonah
    Participant

    Hi 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,
    Jonah

    Jonah
    Participant

    Hi 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

    in reply to: Recurring event bug? #55291
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Sidebars no longer selectable #55289
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Chenge Monday to Mon #55288
    Jonah
    Participant

    H 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

    Jonah
    Participant

    Hi 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,
    Jonah

    Jonah
    Participant

    Hi 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,
    – Jonah

    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Calander views not working #55265
    Jonah
    Participant

    Sounds good Stacey, let us know what you find in the local environment.

    Thanks,
    Jonah

    in reply to: Urgent-Calendar View font is white (unreadable) in 3.0 #55263
    Jonah
    Participant

    Hi siamack,

    Do you have some examples I can look at?

    Thanks,
    – Jonah

    in reply to: Deleting recurring events #55201
    Jonah
    Participant

    Hi @yvrmark,

    I haven’t investigated Suzanne’s site because she changed the credentials she posted here and I never got any notification of an email sent. Suzanne, did you email us credentials?

    – Jonah

Viewing 15 posts - 196 through 210 (of 4,001 total)