Will

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: Export calendar button missing #1515343
    Will
    Participant

    @courtney sure, I posted it to the Events Calendar PRO Help Desk

    in reply to: Export calendar button missing #1509556
    Will
    Participant

    @courtney both sites’ themes are custom, but the issue replicated on Twenty Seventeen as well

    • This reply was modified 8 years ago by Will.
    in reply to: Export calendar button missing #1509050
    Will
    Participant

    I was having the same issue after recent updates. I have no idea what’s causing it but it was still replicating on 4/17/2018. I have two websites with entirely separate themes and both are replicating exactly as OP described, the “Export Events” button shows on the current month, but no other months.

    I fixed it with the following workaround that I slightly modified from an old Tribe Post with a similar issue:

    1) Add this code to your theme’s functions.php:

    /*
     * The Events Calendar - Add iCal Link Below Month View
     */
    function tribe_add_month_ical() {
    	if ( tribe_is_month() ) {
    		echo '<div class="tribe-events-cal-links">';
    		echo '<a class="tribe-events-ical manual tribe-events-button" title="Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps" href="' . esc_url( tribe_get_ical_link() ) . '">+ Export Month\'s Events</a>';
    		echo '</div>';
    	}
    }
    add_action('tribe_events_after_footer', 'tribe_add_month_ical');

    2) Add the following styles to your CSS:

    .tribe-events-ical {
    	display: none!important;
    }
    
    .tribe-events-ical.manual {
    	display: inherit!important;
    	display: initial!important;
    }
    Will
    Participant

    I haven’t made any updates to the site other than updating my plugins this morning (which included the Events Calendar 4.0 and Pro 4.0).

    I’m guessing this has something to do with a javascript conflict — do you know offhand which js file The Events Calendar uses for the hover function?

    Will
    Participant

    Hi Geoff,

    It looks like the hovers do work normally on the Twenty Thirteen Theme.

    I tried disabling all CSS on my site with my main theme, but the hovers still didn’t work. I’m not sure what would be causing the conflict if it’s not CSS-related. Clearing my browser cache also had no effect.

    I haven’t tried disabling addons yet, but I’m thinking that shouldn’t matter since switching themes makes the issue go away. I just can’t think of what difference there is with our main theme other than CSS. Especially since it worked fine on 3.X.

    in reply to: Month Selector (creating next/previous month links) #1002161
    Will
    Participant

    D’oh! I must have hidden that accidentally at some point while tinkering. I was thinking it got removed from the new version, but apparently I hid it and forgot 🙂

    A followup, though — is there an option somewhere to position the next/previous month navigation in the Tribe Header instead of the Tribe footer? I’m trying to avoid manually editing the tribe files as that can cause issues when updates are released.

    Thanks!

    • This reply was modified 10 years, 7 months ago by Will. Reason: typo
Viewing 6 posts - 1 through 6 (of 6 total)