Forum Replies Created
-
AuthorPosts
-
October 8, 2014 at 12:01 pm in reply to: Event publishing problem after copying events and database to a new domain #796939
Brian
MemberOk great, glad it is resolved. Closing out this ticket, but if you would like any other help related to this or something new, please just create a new ticket.
Thanks
October 8, 2014 at 12:00 pm in reply to: The date and time for events not show on each actual event page #796936Brian
MemberGreat, glad it helps, I am going to go ahead and close this ticket, but if you need any other on something else please post a new ticket.
Thanks!
Brian
MemberHi,
Sorry for the troubles with the Google Maps. We have an issue with sites that have had the Events Calendar installed for a long time using an old option which causes the map to have zero height.
Please use this filter to resolve the issue until we can launch another release.
add_filter( 'tribe_get_option', 'adjust_tribe_embedded_map_height', 10, 2 );function adjust_tribe_embedded_map_height( $value, $property ) {
if ( 'embedGoogleMapsHeight' !== $property ) return $value;
return '350px';
}Let me know if that does not work for you.
Thanks
October 8, 2014 at 7:33 am in reply to: The date and time for events not show on each actual event page #796509Brian
MemberHi sobczak
Sorry for the troubles with this. I can help you out.
I have seen this issue from time to time. Many times it is a theme related conflict with css hiding the content.
I took a look at your site and found the theme has some css that hides the date.
Add this to your theme or through a custom css plugin such as Simple Custom CSS.
.tribe-events-meta-group .updated {
display: block;
}Let me know if that works.
Thanks
October 8, 2014 at 7:26 am in reply to: Entering password once to unlock all protected events with that same password #796489Brian
MemberHello jdeng87,
Thanks for using out plugins and I can help you out with this.
The Password Protected Feature for each event is actually through WordPress and its functions.
http://codex.wordpress.org/Using_Password_Protection
Although I think there could be a solution for this it is not something we can provide through the forum.
If you find a solution and run into an issue with it working with Events we maybe to help with the next step for you.
Let us know.
Thanks
Brian
MemberHi Matt
Can answer your two questions. See my answers below.
1) I have updated Events Calendar to version 3.8 and I am getting an alert to pair Events Calendar Pro with an older version of Events Calendar? What should I do? There is no 3.8 for Events Calendar Pro?
We do have a new version of Pro for 3.8. Do you have your license entered so you can get updates through WordPress? Also you can download the latest version by logging in here and going to Account-Central->Downloads. Let me know if you have any issues with this and we can help out.
2) On the main calendar page I want to change the word “events” to “classes” since I am using this to show upcoming classes at a studio. Where can I change that text. Instead of saying “Upcoming Events” or “Find Events” I want to change the word Events to Classes.
If you follow this tutorial below you can change the word events throughout your site including the admin.https://theeventscalendar.com/support/documentation/changing-the-word-events-to-something-else/
Let me know if you run into any issues or have some more questions.
Thanks!
October 8, 2014 at 7:17 am in reply to: Change all instances of 'Events' to 'Something' – Solution has backend side-effect #796475Brian
MemberHello,
Sorry for the issues when attempting to change the text.
I just copied the code from that tutorial into my site and I was not able to replicate the issue you are having.
Is it possible you could provide a link to a pastebin or gist with your coding in it and I can try it out and see if I get the same issue you are having.
I ask for the coding in either of those two services as it does not come across very well here when you paste it into the reply.
Let me know and we can go from there.
Thanks
Brian
MemberThere is a issue with the maps in the single view and the venue view of people that started with older versions of the plugins not showing the map correctly as it is picking up an option for the map size which sets the height to zero.
This filter has fixed that issue until we can get another release out(hopefully in the next two weeks).
add_filter( 'tribe_get_option', 'adjust_tribe_embedded_map_height', 10, 2 );function adjust_tribe_embedded_map_height( $value, $property ) {
if ( 'embedGoogleMapsHeight' !== $property ) return $value;
return '350px';
}Map View
As far as the Map View showing all the events there is not a bug we are aware of. You saying that your Map view is not showing at all in the dropdown for View As?Not sure what has changed, but I was able to visit the site today and see it here: (although I do not think it was there yesterday)
http://ilovefreeconcerts.com/events/map/
It is also appearing in the Event View Dropdown.
Are you seeing it now too?
Let me know if that is the case or not.
Thanks
Agence if you still have problems after trying that filter can you please create a new ticket and we can help you better there.
Brian
MemberGreat, glad it helps, I am going to go ahead and close this ticket, but if you need any other on something else please post a new ticket.
Thanks!
Brian
MemberOk that makes sense then.
Yes those are notices and not errors that show on a site without debug on 🙂 They only show when debug is on and those functions are still working we are just moving away from it in future versions. So we have deprecated notices. (I guess we should have followed our own notices better). Here is where I found the instances on our plugin if you would like to change them before we can in the plugin:
\The Events Calendar\events-calendar-pro\lib\widget-countdown.class.php (1 hit)
Line 57: 'eventDisplay' => 'upcoming',
\The Events Calendar\events-calendar-pro\lib\widget-venue.class.php (1 hit)
Line 29: 'eventDisplay' => 'upcoming'
\The Events Calendar\events-calendar-pro\public\template-tags\general.php (1 hit)
Line 552: 'eventDisplay' => 'upcoming',
\The Events Calendar\events-calendar-pro\public\template-tags\venue.php (1 hit)
Line 29: 'eventDisplay' => 'upcoming' );
\The Events Calendar\events-calendar-pro\views\pro\single-organizer.php (1 hit)
Line 62: <?php echo tribe_include_view_list( array('organizer' => get_the_ID(), 'eventDisplay' => 'upcoming', apply_filters( 'tribe_events_single_organizer_posts_per_page', 100 ) ) )?>
\The Events Calendar\events-calendar-pro\views\pro\single-venue.php (1 hit)
Line 76: <?php echo tribe_include_view_list( array('venue' => $venue_id, 'eventDisplay' => 'upcoming', 'posts_per_page' => apply_filters( 'tribe_events_single_venue_posts_per_page', 100 ) ) )?>We do have a maintenance release that we hope to release in the next week or two that looks like is removing most of these instances if you would like to wait.
Thanks
Brian
MemberHi Paul,
I can help troubleshoot this with you and get it working.
I took a look at your site and found this error in the console of my browser:
ReferenceError: Mobile_redirect is not defined
Which looks to be coming from this script in the head of your site:
<script type=”text/javascript”>Mobile_redirect(“http://m.mobilewebsiteserver.com/site/parkspa”);</script>
That should help, but to show the events I see the theme has rather loose selector hiding things.
Try adding this css to your theme or through a plugin such as Simple Custom CSS:
h3.tribe-events-month-event-title {
opacity: 1;
}Let me know if that works for you.
Thanks
Brian
MemberJosh,
Sorry for the issue. From the error you provided:
Fatal error: Call to undefined function tribe_has_past_events() in /home/fit2trainco/public_html/wp-content/themes/fit2train/tribe-events/list/nav.php on line 30
It looks like this function tribe_has_past_events() is in a custom template for the Events Calendar in your theme and that function is no longer available.
If you can go in there update the nav.php from the latest version in the Events Calender that should resolve the error. I am not sure what customizations you have in the nav.php so you may have to make some changes to get it working.
Does that work? Or let me know if you would like some more help.
Thanks
Brian
MemberHello,
Sorry for the issues with the Php Notices. Thanks for the information about the testing for conflicts.
Do you have wp-debug turned on in your wp-config.php?
Usually notices only show in debug mode, which is generally not used when a site is live.
I visited the single event here:
http://www.sfbike.org/event/sf-bicycle-coalition-phone-bank/
And did not see the notice. Is it still showing for you?
Let me know what you find out about the debug and we can go from there.
Thanks
Brian
MemberHey sfmade,
Sorry for the issue with the non-logged in user. I visited your site to help troubleshoot this and came up with this error in my console.
“TypeError: c.curCSS is not a function”
Look like it is coming from the Smart Slideshow Widget Plugin.
See if you can get that error resolved and if it fixes the issue.
Let me know what you find out and we can go from there.
Thanks
October 7, 2014 at 2:21 pm in reply to: Adding events that are already posted as custom post-types #794849Brian
MemberThanks for the interest in our plugin.
That is an interesting customization. Unfortunately, Pro does not have those features and we do not support customizations with our support for the plugins. We can help if you have specific questions on how a function in our plugin works. Beyond that the customization would be up to you.
Thanks
-
AuthorPosts
