Forum Replies Created
-
AuthorPosts
-
Cliff
MemberHi. The account you’re logged in to has purchased Filter Bar but not PRO. I believe you’re looking for the widgets available in PRO.
You can read our Widgets documentation for additional information.
Let me know if you need additional clarification on anything.
November 17, 2015 at 7:05 am in reply to: Past/Future Event Text Color = Undo Shading For Past and Future #1026997Cliff
MemberHi Lauren.
On my test site, this was the CSS rule making the past events 50% opacity:
.tribe-events-calendar td.tribe-events-past .tribe-events-month-event-title a, .tribe-events-calendar td.tribe-events-past .tribe-events-viewmore a { opacity: .5; filter: Alpha(opacity=50); }It came from /wp-content/plugins/the-events-calendar/src/resources/css/tribe-events-theme.min.css
You could add code like this to override it:
.tribe-events-month .tribe-events-calendar td.tribe-events-past .tribe-events-month-event-title a, .tribe-events-month .tribe-events-calendar td.tribe-events-past .tribe-events-viewmore a { opacity: 1.0; filter: Alpha(opacity=100); }See that I added
.tribe-events-monthbefore each selector (to add CSS specificity) and changed the opacity from 50% to 100%.===
You can add custom CSS code via your child theme’s style.css file or via a plugin like Simple Custom CSS or, my favorite, Jetpack. Jetpack supports regular CSS and the LESS and Sass pre-processors.
Please let me know if this answered your question.
Thanks!
November 17, 2015 at 6:41 am in reply to: 404 errors on recurring events & cannot edit series #1026985Cliff
MemberOh, great. Glad to hear it.
So at this point is there anything left to do? I want to make sure we fully resolve all aspects of this issue.
Cliff
MemberIt’ll should import all 52 occurrences as separate (non-connected) events.
Please continue using/testing and let me know if you need anything else.
November 16, 2015 at 10:33 pm in reply to: Customised Date and Time format display in List Widget #1026716Cliff
MemberI’m glad you got it figured out for your needs. Thanks for letting me know.
November 16, 2015 at 10:32 pm in reply to: 404 errors on recurring events & cannot edit series #1026714Cliff
MemberAngie, I’m glad we could at least confirm the pattern (what we found via database and what you found in your own testing).
Could you please recreate one of those events, test to make sure it works properly — and, if it does, continue recreating the rest of the ones on our “broken events” list?
We know it’s not fun recreating events, but we’ve not seen this issue appear for anyone else and building you a custom solution to resolve the issue would probably take as much or more time than you recreating them. As such, having you recreate these events is recommended, assuming the first test one works properly.
Please proceed with this course of action and update me accordingly.
Thank you for your understanding.
November 16, 2015 at 10:27 pm in reply to: Missing top navigation when event selected – cannot edit event #1026712Cliff
MemberThanks for the link and the additional information.
I see now that you’re asking about your site’s main header changing from a fixed/scrolling header to a static header.
All I can tell you is that the Events page is a WordPress “archive” page, and the Event Single page is a “single” custom post type page.
Your theme’s options — or contacting your theme author — would be the place to ask how to get the same fixed/scrolling header on your “.single-tribe_events” template. We cannot provide theme-specific customization support per our Scope of Support Terms.
Thank you for your understanding.
November 16, 2015 at 10:19 pm in reply to: Recurring Event – First instance redirects to last date in series #1026711Cliff
MemberThanks for your understanding and patience.
November 16, 2015 at 10:19 pm in reply to: Use one template for Calendar and different one for single listings? #1026710Cliff
MemberRobin, I am sorry to hear your upgrade from version 2 to 3 wasn’t as smooth as you would have wanted.
Heads up: we’re planning to release version 4 within a month or so.
Hopefully you’ll agree that versions 3 and 4 are major improvements over version 2.
Regarding this specific ticket’s main topic, we cannot provide support for your in-depth customization request, per our Scope of Support Terms. But you’re welcome to browse our Feature Requests and possibly submit a new issue.
I appreciate your understanding and please know that you are a valued customer.
Cliff
MemberThank you for the screenshot.
Just to double-check, do you have the latest version of The Events Calendar core/free? Version 3.12.6 is the current version. Your system report from earlier displayed 3.12.5.
Once you have the latest version, does the All Events link work?
If not, keep the latest version and try these troubleshooting ideas:
Did you try switching Permalinks to “Default”?
Please try using Twenty Fifteen theme, all non-Modern Tribe plugins disabled, and with Permalinks set to Default. Then visit wp-admin > Events > Settings and see if “Events URL slug” has the proper slash between the domain and the slug (i.e. that it forms a proper link).
If not, please change ‘events’ to something else like ‘calendar’, save settings, and see if the slash was added then.
Hopefully one of these things can help resolve the issue. If not, we’ll see what else we can try. We’ll get to the bottom of it!
Thanks.
Cliff
MemberThe CSS file that adds
border-left: 5px solid #d8882dstyling is http://www.hessel.org/?teccc_css=30f16fc7b078cc06c9a7ea87d7cb9d35This is not from our plugin. I’m guessing this is from your theme.
The styling is added for a BUNCH of different selectors:
Nevertheless, you can override this code with CSS like this:
.tribe-events-adv-list-widget .tribe-mini-calendar-event a { border-left-color: red !important; }Ordinarily, I don’t like to use !important, but there are many CSS selectors, plus I’m not sure if you want all of them the same color or different colors per event category. Regardless, this should get you headed in the right direction, which is the extent of our support for personal customizations.
===
You can add custom CSS code via your child theme’s style.css file or via a plugin like Simple Custom CSS or, my favorite, Jetpack. Jetpack supports regular CSS and the LESS and Sass pre-processors.
===
I hope this helps!
Cliff
MemberThanks for your system report. The slug settings look fine there.
I looked at the code used to generate the link and there’s a filter for it.
If you have any custom code anywhere using the tribe_get_events_link filter (theme’s functions.php file or in a plugin), please remove it to test.
If you’re not using that filter, please send me a screenshot of your permalink settings — from wp-admin > Settings > Permalinks
November 13, 2015 at 3:11 pm in reply to: Customised Date and Time format display in List Widget #1025506Cliff
MemberI have determined you’re using the List Widget from the free/core The Events Calendar plugin, which is fine. FYI: the PRO plugin, when activated, replaces that widget with the same thing but with more options, if you’re interested.
So /wp-content/plugins/the-events-calendar/src/views/widgets/list-widget.php is the file generating your widget output. tribe_events_event_schedule_details() is generating the duration you’re seeing on screen.
The easiest way to manipulate how that duration is displayed might be to edit your General settings date/time formats:

If changing those doesn’t help, you may be able to leverage one of these filters to accomplish your customization:
- tribe_events_event_schedule_details_formatting
- tribe_events_event_schedule_details
Search the /wp-content/plugins/the-events-calendar/src/functions/template-tags/general.php file for ‘function tribe_events_event_schedule_details’ for further research.
I hope this points you in the right direction to accomplish what you’re wanting.
Cliff
MemberThat’s what I’ll try to do once I get a link to the site that screenshot came from…
November 13, 2015 at 11:27 am in reply to: Customised Date and Time format display in List Widget #1025427Cliff
MemberHi Nickolas.
I didn’t see “Min” on my test site with Twenty Fifteen theme, and I didn’t find it in the List Widget file at /wp-content/plugins/events-calendar-pro/src/views/pro/widgets/list-widget.php
Could you please provide me a link to your site and a screenshot of where you’re seeing it?
Thanks.
-
AuthorPosts

