Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi,
Thanks for using the Events Calendar.
Here on the pre-sales forum, I’m afraid we do not provide technical support. I would ask that you take any technical support questions across to our wordpress.org forum – our staff scan it periodically and other community members may also be able to help out.
Thanks again!
Brian
MemberHi,
I found this changes the text color for me:
.tribe-events-month-event-title a {
color: #fff;
}The class might not be in the stylesheet you most likely will have to create your selectors like that.
Thanks
Brian
MemberYou can try this coding from George, that might work:
Beyond that I do not have anything else to provide on this and can only support existing features and not customizations.
Thanks
November 19, 2015 at 5:45 am in reply to: Email notifications for community events not received #1027899Brian
MemberHi,
Sorry for the issues you are having. I can help out here.
Do you have another form or something like that on your site that notifies you that is not Event Calendar related that you can test to see if that works?
If not can you try to see if the Password Reset email gets sent to you from the login screen?
Let me know and we can go from here.
Thanks
November 19, 2015 at 5:41 am in reply to: Plugin could not be activated because it triggered a fatal error. #1027896Brian
MemberHi,
Sorry for the issues you are having here I can help out.
Can you try just activating the Free Version and see if that works?
How did you update the Events Calendar and Pro?
Can you confirm you only have one copy of each in your plugin directory?
Let me know and we can go from here.
Thanks
November 19, 2015 at 5:36 am in reply to: Can you default calendar view to the first month with events? #1027895Brian
MemberHi,
Thanks for using our plugins. I can help out here.
There is no feature to fast forward the main month view to the first month with events.
You can link directly to May 2016 if you like, beyond that I do not have a feature to help out.
If you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.
Cheers
Brian
MemberHi,
Thanks for the interest in Pro.
The Event Categories work the same in Pro as they do in the free version.
If you think that is something you would like as a feature I encourage you to visit our User Voice Page and either upvote an existing request or make a new request there.
Cheers
Brian
MemberHi,
Thanks for using the Events Calendar.
Here on the pre-sales forum, I’m afraid we do not provide technical support. I would ask that you take any technical support questions across to our wordpress.org forum – our staff scan it periodically and other community members may also be able to help out.
Having said that I would check out our themer’s guide for making these changes:
https://theeventscalendar.com/knowledgebase/themers-guide/
But please take any questions in response to the guide to WordPress.org
Thanks again!
Brian
MemberHi,
Thanks for the interest in our plugins.
I can help out here.
We do have this guide for changing the word events:
https://theeventscalendar.com/knowledgebase/changing-the-word-events-to-something-else/
That would be a global change and might get you what you are looking to do.
You could also use our themer’s guide to remove the organizer and venue areas:
https://theeventscalendar.com/knowledgebase/themers-guide/
Finally you could relabel venue or organizer to something else as well:
https://theeventscalendar.com/knowledgebase/relabeling-the-venue-organizer-sections-in-event-meta/
We are limited in support customizations much beyond this, but that should get you close to what you are looking for.
Thanks
Brian
MemberHi,
Thanks for using the Events Calendar.
Here on the pre-sales forum, I’m afraid we do not provide technical support. I would ask that you take any technical support questions across to our wordpress.org forum – our staff scan it periodically and other community members may also be able to help out.
Thanks again!
Brian
MemberI am glad to see you were able to figure it out and thanks for sharing!
I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.
Thanks!
Brian
MemberHi,
It looks like they modified the Event List Widget is being used on the home page.
I do not have any coding provide for a customization like that.
We have our themer’s guide for making changes:
https://theeventscalendar.com/knowledgebase/themers-guide/
There is also this 3rd party guide that might help too:
https://theeventscalendar.com/knowledgebase/horizontal-list-widget/
I can try to help answer a question or two, but beyond that customizations are beyond the support we can provide.
Cheers
Brian
MemberHi,
That coding is on the right track, but the event categories are a custom taxonomy so it will not work with get_the_category().
I came up with this coding instead and it worked for me:
/*
* The Events Calendar - Add First Event Category Name to Body Class in Single Events
*
* Events > Settings > Display Tab > Events Template must be set to Default Event Template
*/
add_filter( 'body_class', 'tribe_add_event_category' );
function tribe_add_event_category( $classes = '' ) {global $post;
if ( is_singular( 'tribe_events' ) ) {
$category = get_the_terms( $post->ID, 'tribe_events_cat' );
$classes[] = 'category-' . $category[0]->slug;
}
return $classes;
}This will only work if this Events template setting here:
Events > Settings > Display Tab > Events Template
Is set to “Default Events Template”
Cheers
Brian
MemberYou’re Welcome.
Since this is resolved I am going to close this ticket, but if you have any pre-sales questions, please create a new ticket for us to help you out 🙂
Brian
MemberSounds good. Let me know what you find out.
Thanks
-
AuthorPosts
