Forum Replies Created
-
AuthorPosts
-
Cliff
MemberHi Erin. Thanks for your question and the screenshot.
Users can see organizers and venues made by admins and any they have created themselves. They cannot see or use organizers created by other users. This hasn’t changed from v3.12.x to v4.0.x
I just tested this on my local install with the latest versions of TEC, TEC PRO, and Community Events. Please advise if you’re experiencing something different and want me to test any other scenarios.
Looking forward to hearing back from you. Thanks.
Cliff
MemberHi Greg. Thanks for your question.
Best I can tell from your screenshots, you’re using Avada theme, which has custom displays of our plugin. You might want to ask their support for suggestions.
Or I can try to help if you provide me a link to the site and/or some screenshots of the widgets you’re using and other settings that may help me understand your setup better.
Looking forward to hearing back.
Cliff
MemberHi Paul.
I tested http://hills4thrills.com/activities/list/?tribe_event_display=past (not category-specific) and it worked (did display past events).
On my local testing site with Twenty Fifteen theme, I tested and displaying past events of a specific category worked fine (just like the main, non-category-specific events page on your site).
As such, could you try temporarily activating the default Twenty Fifteen theme and seeing if the issue persists?
If disabling the theme fixes it, we have narrowed the issue down to a theme conflict. Do you have any theme overrides for the Events Calendar? If so could you try disabling them by renaming your [themename]/tribe-events/ folder to ‘tribe-events-bak’. Did that fix it?
If the issue persists in the default Twenty Fifteen theme, then we have a different set of debugging steps. Please keep the Twenty Fifteen theme enabled, and also disable any plugins other than the ones from Modern Tribe to see if that fixes it. If it does, please try re-enabling the plugins one at a time until the issue resurfaces. When it does resurface, can you let me know which plugin caused that to happen?
Cliff
MemberHi guys.
I apologize for the bug where Organizer displays in the PRO Event List widget even when not selected. We already have it logged in our system, but I added this thread to the list of threads affected.
In the meantime, you can hide the Organizer via CSS:
.tribe-events-adv-list-widget .tribe-events-organizer { display: none !important; }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 know that we try to keep each forum thread to a single issue from a single user. Please keep this in mind in the future.
365Naples,
Regarding your first issue: “The exclusion by date feature for an event still doesn’t work.”
Please provide more information (screenshots are always great too) so I can know which widget you’re referring to and to test your settings to see if I can replicate it.
Thank you.
December 12, 2015 at 6:52 pm in reply to: Exclude Events / Categories from Upcoming Events Widget #1040292Cliff
MemberGlad to hear you’re getting it sorted out. Have a good one!
Cliff
MemberHi. Sorry for the delayed reply. Hopefully this bit of above-and-beyond coding help can make up for the delay 🙂
===
In your theme’s functions.php file, you could add this code to add the #volunteer-form and output the Gravity Form:
add_action( 'tribe_events_single_event_after_the_content', 'forum_1020203_volunteer_form' ); function forum_1020203_volunteer_form() { $output = '<div id="volunteer-form"></div><a name="volunteer-form"></a>' . do_shortcode( '[gravityform id=8 title=true description=true ajax=true]' ) . PHP_EOL; echo $output; }Unless you have other customizations in there, you could then delete the /wp-content/themes/flawless-childtheme/tribe-events/single-event.php file.
===
Add this code to the bottom of a fresh copy of /wp-content/plugins/the-events-calendar/src/views/list/single-event.php — and replace your copy of this file with it: /wp-content/themes/flawless-childtheme/tribe-events/list/single-event.php
$event_id = get_the_ID(); $end_time = strtotime( get_post_meta( $event_id, '_EventEndDate', true ) ); $volunteer_link = esc_url( trailingslashit( tribe_get_event_link() ) . '#volunteer-form' ); if( ! empty( $volunteer_link ) && time() < $end_time ) { // event end time is not in the past $button = sprintf( '<div class="volunteerbutton"> <a class="gdlr-button medium" href="%s" title="Volunteer for this event" rel="bookmark">Volunteer</a> </div>', $volunteer_link ); echo $button; }Please let me know how things go for you!
Cliff
MemberScott, upon initial page load of http://cityofcharleston.com/test/events/, I see these Chrome console errors:

Your theme or a non-Modern Tribe plugin is including the Google Maps API. You should disable that mapping functionality if possible or else use wp_deregister_script.
I’m not sure why you’re seeing the isotope error. That could be from your theme or another plugin as well.
Our plugins can’t be expected to work when your theme and/or non-Modern Tribe plugins are causing console errors, so those should be resolved first.
Also, for me, the widget on your home page appears to be working correctly, and I don’t see the console errors on that page.
Please let me know how you get along resolving the console errors on your event calendar page.
December 11, 2015 at 9:30 pm in reply to: Block all recurring events from a particular day (e.g., Crhist #1039965Cliff
MemberThink of it like pre_get_posts but for event queries.
tribe_events_pre_get_posts is applied in these ways:
In the free/core plugin:
- add_action is located once in /wp-content/plugins/the-events-calendar/src/Tribe/Main.php
- do_action is located three times in /wp-content/plugins/the-events-calendar/src/Tribe/Query.php
In PRO add-on:
- add_action is located once in /wp-content/plugins/events-calendar-pro/src/Tribe/Geo_Loc.php
- and twice in /wp-content/plugins/events-calendar-pro/src/Tribe/Main.php
You can search our site and gists for possible additional help.
I hope this info helped! 🙂
December 11, 2015 at 9:18 pm in reply to: Single event view ‘previous event’ link incorrectly points to the oldest event #1039964Cliff
MemberDave and David, I believe this issue has been resolved in the latest version 4.0.1. Thank you for your patience awaiting this fix.
Cliff
MemberThis reply is private.
December 11, 2015 at 1:52 pm in reply to: Issues with German translation in Events Calendar 4.0 (without PRO version) #1039881Cliff
MemberOliver, regarding the 404 issue, I confirmed the following behavior in French:
- /events/liste/ works with Core active and PRO deactivated
- /events/liste/ is a 404 with PRO active but /events/list/ works with PRO active
- Both /events/list/ and /events/liste/ work with PRO deactivated
I have reported these in our internal bug tracker and hope it will be fixed soon. However, we do not provide ETAs. I have added this thread to the bug report so this thread should receive an update once a fix is released. Thank you for your understanding and patience.
Cliff
MemberI understand better now. Thank you. However, could you please use a service like Jing video recording or CloudApp gif/video recording so I can watch how it’s working for you? (Links provided in a previous reply)
Thank you.
Cliff
MemberTommy, I’m glad to hear your issue is resolved.
Regarding countdown shortcode question, I took a quick try at centering it but was unsuccessful so please open a new thread for that question.
Thank you.
Cliff
MemberYou’re welcome. Thank you both for your patience awaiting a future maintenance release.
Josh, for now, the suggested workaround is to edit menus in the Theme Customizer.
<div id=”post-1038889″ class=”bbp-reply-header”></div>Cliff
MemberJaap, thanks for your patience as we fix this issue. I’ve added this thread to our internal bug report. As a workaround for now, you can use the Theme Customizer’s menu editor if you do need to edit menus.
Thanks!
-
AuthorPosts
