Forum Replies Created
-
AuthorPosts
-
Will
ParticipantWill
ParticipantI 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; }December 3, 2015 at 1:03 pm in reply to: Month-view Event hovers (".tribe-events-tooltip") not showing since 4.0 upgrade #1035009Will
ParticipantI 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?
December 3, 2015 at 12:51 pm in reply to: Month-view Event hovers (".tribe-events-tooltip") not showing since 4.0 upgrade #1035003Will
ParticipantHi 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.
September 4, 2015 at 9:39 am in reply to: Month Selector (creating next/previous month links) #1002161Will
ParticipantD’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
-
This reply was modified 10 years, 7 months ago by
-
AuthorPosts
