Forum Replies Created
-
AuthorPosts
-
Cliff
MemberThanks. Try this:
div#tribe-community-events.form, div#tribe-community-events.form h4 { color: black; }FYI: Your theme’s style.css file sets all headings and headings with links to color: #FFF (white).
Cliff
MemberThanks for the info. I see your WordPress timezone is not set.
Would it be okay for you to set that to your preferred/default timezone?
Cliff
MemberThis is due to your theme… but maybe this CSS will help:
body.events-single span.date-end { display: block; }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.
Let me know how it goes.
Cliff
MemberSorry to hear that; thanks for trying.
What happens if you change wp-admin > Events > “Events URL slug” option to something else, like “calendar” (without quotes)?
And does the slash show up in your preview link, like this screenshot?

===
If still not resolved yet, would you mind grabbing your system information and pasting it here? Make sure to use the “Set as private reply” checkbox to protect your private information from the public.
You can find the system info by going to WP Admin > Events > Settings, clicking on the “Help” tab, and scrolling down to the “System Information” box. (Or by going to [yoursite]/wp-admin/edit.php?post_type=tribe_events&page=tribe-events-calendar&tab=help)
That will give me a lot of extra information to help diagnose the problem.
November 12, 2015 at 2:14 pm in reply to: Event Calendar Widget Display Incorrect Date For Event #1024952Cliff
MemberThanks for the additional info.
Are you sure the event(s) appearing with the wrong date/time — that specific event — doesn’t have a timezone other than Chicago?
Cliff
MemberI tested a couple things (setting a default venue, setting a default organizer, having a venue that starts with double-quotes, same for organizer) and couldn’t get the “Use New Venue” and “Use New Organizer” options to go away…
I am not sure what else to suggest other than switching to Twenty Fifteen theme, deactivating all non-Modern Tribe plugins, and then letting me test out the form at that link (or on a staging/development site if at all possible).
Ideally, please also enable WP_DEBUG. You’ll need to edit to your site’s wp-config.php file and change this line of code:
define('WP_DEBUG', false);to this:define('WP_DEBUG', true);
(or add this line of code if you can’t find mention of ‘WP_DEBUG’ in your wp-config.php file)Let me know if you want to pursue this route of support.
Cliff
MemberThanks so much for narrowing down the issue. Great job!
Here’s a screenshot of the code from /wp-content/plugins/events-calendar-pro/src/views/pro/widgets/list-widget.php that generates the “View More” link in that widget:

See that $link_to_all ?
Your child theme’s list-widget must have something different there — or is affecting what that variable is set to.
One option is to debug your child theme widget and figure it out.
Another option is to copy the list-widget.php file from PRO plugin folder to replace your current child theme list-widget.php file — and then make your modifications all over again.
I hope this gets you on your way! Let me know if you need anything else.
Cliff
MemberAgain, sorry about the issues in your site’s setup and that there wasn’t a excellent resolution for you via this forum.
I am glad to hear that the other thread I helped you with worked out well.
Please open a new ticket if you have new information regarding this thread’s issue or any brand new issues.
We appreciate you as a customer and hope to bring you more joy in the future.
Cliff
MemberWhen I tested that CSS on my local site with Twenty Fifteen theme, it affected the headings too.
Your theme has some rules affecting your form. Per our Support Terms, we usually don’t provide custom CSS for theme compatibility issues. I especially cannot provide additional support for this question without a link to the form, which would need to be publicly-accessible (i.e. no login required).
If you give me a link, I may be able to help with this quick fix. Otherwise, you’d need to figure it out on your own.
I look forward to your reply.
Cliff
MemberWonderful! 🙂
Cliff
MemberGlad to hear it. You’re welcome.
For future reference, per our Support Terms, we do not provide support for such customizations. However, we definitely can point you in the right direction, as happened in this thread. 🙂
Cliff
MemberSounds good. Feel free to update this ticket if you need anything else — or open a new ticket if for a different issue.
Cliff
MemberHi Daniel. Thanks for considering our PRO add-on.
One of its many features is the ability to easily add additional/custom fields.
If you’re interested in having your site visitors/users submit their own events, that’s what the Community Events add-on is for. And additional/custom fields you add via PRO will show up on the Community Events front-end event submission form, too.
I hope this answers your question.
Last but not least, we have a pretty great Refund Policy so you can buy one or many of our add-ons and thoroughly test them.
Let me know if you have any follow-up questions.
Cliff
MemberHi Steven.
I think you’ll be excited about the upcoming “Color Pickers in WordPress Customizer” feature: https://theeventscalendar.com/some-favorite-features-in-the-upcoming-4-0-release/
But to answer your question how to override our CSS files, you’ll want to do it via a Child Theme. References:
- DIY: https://codex.wordpress.org/Child_Themes
- DIFM (Do it for me): https://wordpress.org/plugins/one-click-child-theme/
Once your child theme is created, you’ll need to manually add a ‘tribe-events’ folder inside.
If you want to load your own custom stylesheet in addition to the file at /wp-content/plugins/events-calendar-pro/src/resources/css/tribe-events-pro-theme.css, you’d want to create a file like this:
/wp-content/themes/YOUR-CHILD-THEME/tribe-events/pro/your-css-file-name.css
Here’s an excerpt from the comments at the top of our plugin’s tribe-events-pro-theme.css file:
To add your own custom styles, create a stylesheet with the name tribe-events-pro.css in the tribe-events/pro/ directory of your theme.
Your new stylesheet will be loaded after our own stylesheet.
To replace our stylsheet altogether, you can use the ‘tribe_events_pro_stylesheet_url’ filter.
Using that PHP filter is documented in our Themer’s Guide.
I hope this information gets you on the right path.
Just know that if there’s ever a file you want to override, there’s likely a “how-to” comment at the top of the plugin’s actual file. (Just don’t edit the actual plugin files or else your changes will be lost whenever there’s an update.)
Cliff
MemberHi again, David.
That page is not a single WordPress page with a page ID.
Instead, it’s a WordPress archive page.
You can see that with
body.post-type-archive-tribe_eventsI hope that helps.
-
AuthorPosts
