Jonah

Forum Replies Created

Viewing 15 posts - 2,461 through 2,475 (of 4,001 total)
  • Author
    Posts
  • in reply to: Calendar bug on reoccurring events #22023
    Jonah
    Participant

    Hi Tom,

    The first thing you should do is update to the latest version of the plugin which is 2.0.7. Try that first and let me know if you’re still having issues.

    Thanks,
    Jonah

    Jonah
    Participant

    Hi Sammy,

    We have some bugs with the plugin interfering with the site navigation when pretty permalinks are not enabled. Can you try turning permalinks on by going to Settings > Permalinks and setting them to Postname?

    Let me know whether or not that helps.

    – Jonah

    in reply to: thumbnail in the tooltip #22021
    Jonah
    Participant

    Hi Joseph, all you need to do is add a featured image for your event(s) and the thumbnail should automatically appear in the tooltip. Have you tried that?

    – Jonah

    in reply to: Sidebar Widget #22020
    Jonah
    Participant

    @Andrew, also be sure to check out this tutorial on fully customizing the widgets: https://theeventscalendar.com/how-to-completely-customize-widgets/

    – Jonah

    in reply to: Category Title on Category List pages #22003
    Jonah
    Participant

    Hi Krysia,

    Glad that worked! Let us know if you need anything else.

    – Jonah

    in reply to: How to show events for only 1 month and 1 category? #21975
    Jonah
    Participant

    Hi Kenny,

    You can only embed the calendar via PHP code, we don’t have any shortcodes. So, you’ll want to somehow get this code into your theme’s single.php file (for single posts) and limit it to only the specific posts you want via conditionals. The embeds you can use are the following:

    include('wp-content/plugins/the-events-calendar/views/table.php');

    …or…

    include('wp-content/plugins/the-events-calendar/views/gridview.php');

    Then, to filter out specific categories you’ll want to use the following in your theme’s functions.php file:

    add_action( 'pre_get_posts', 'exclude_events_category' );
    function exclude_events_category( $query ) {
    if ( is_single('your-single-post') ) {
    $query->set( 'tax_query', array(
    array(
    'taxonomy' => TribeEvents::TAXONOMY,
    'field' => 'slug',
    'terms' => array('2012'),
    'operator' => 'IN'
    )
    )
    );
    }
    return $query;
    }

    Change ‘your-single-post’ to whatever it is and the terms parameter to whatever category you want to include or exclude.

    I hope that helps!

    – Jonah

    in reply to: Gray box surrounds event on sidebar widget #21974
    Jonah
    Participant

    Glad to hear Mark! Let us know if you need anything else.

    Cheers,
    Jonah

    in reply to: anchor tag not working #21972
    Jonah
    Participant

    Hi Joe,

    I’m not sure why this isn’t working for you, it seems to work ok for me. I don’t get taken back to the top of the page when it finishes loading in Chrome. Unfortunately we can’t help with this type of thing. Good luck!

    – Jonah

    in reply to: Category Title on Category List pages #21971
    Jonah
    Participant

    Hi Krysia,

    To modify page titles in your theme you’ll want to find wherever the_title() is called. It’s going to either be in header.php, page.php or via your functions.php file. Once you’ve found where the titles are output you can add the category name like so:

    if( tribe_is_event() && !tribe_is_day() && !is_single() && is_tax() ) { // Events List Category Pages
    echo 'Events Calendar' . ' » ' . single_term_title('', false);
    }

    I hope that helps!

    – Jonah

    in reply to: Remove Duplicate Event Content #21970
    Jonah
    Participant

    Hi Joe,

    I doubt our plugin is doing this. Have you tried deactivating all other plugins to see if there’s another plugin causing the problem? Or, try switching to the Twenty Eleven theme to see if it’s a problem with your theme.

    I hope this helps!

    – Jonah

    in reply to: Recurring Events that are not on at regular intervals #21969
    Jonah
    Participant

    Hi Karen,

    We don’t have any built in facility for this but you could certainly use a third party plugin to help you duplicate events: http://wordpress.org/extend/plugins/duplicate-post/

    I hope that helps!

    – Jonah

    Jonah
    Participant

    Hi Vivek,

    Since you said the arrows worked in the Twenty Eleven theme, there must be something in your theme that is conflicting with this functionality. Want to send us a copy of your theme and we’ll see what we can figure out? You can email to pro [at] tri [dot] be and please reference this thread in the email.

    Thanks,
    Jonah

    in reply to: Templates Inside of Templates #21967
    Jonah
    Participant

    Hey Carter,

    Glad to hear you got it worked out! Let us know if you need anything else.

    Cheers,
    Jonah

    Jonah
    Participant

    Hi Richard,

    I haven’t been able to reproduce this yet and I’ve tried switching around the times of the event on the next day to try and “break” the query and get the 2nd event to show. I haven’t tried looking at it specifically at 8pm but will do so as soon as I can. Can you please try deactivating all other plugins and switching to the Twenty Eleven theme to rule out a conflict with another query somewhere else?

    Thanks,
    Jonah

    in reply to: Event Description Shows up Twice Within Event Page #21951
    Jonah
    Participant

    Hi Vivek,

    Glad to hear that worked! Let us know if you need anything else.

    Cheers,
    Jonah

Viewing 15 posts - 2,461 through 2,475 (of 4,001 total)