Forum Replies Created
-
AuthorPosts
-
December 15, 2016 at 8:28 pm in reply to: Preview gives "Your preview doesn't have any records to import." (ICS & Google) #1206892
Cliff
MemberThis reply is private.
December 15, 2016 at 8:16 pm in reply to: In backend, how do I see what venue is assigned to and event? #1206890Cliff
MemberThanks for your feedback, Stan.
I’m glad it works for you!
Cliff
MemberAt this time, the tribe_events shortcode can only accept a single Event Category.
You could request this as a new feature at our plugins’ UserVoice page.
This allows others who are interested in that feature to easily voice their support. We frequently review suggestions there to find out which ones are popular, then we implement as many of them as we can.
If you post it / find it, feel free to link to it from here in case anyone comes across this forum thread in the future.
Cliff
MemberHi, Sascha. I’d be glad to help. Please describe what you’d like to accomplish via the Tribe Bar, either by typing out or recording a screen capture video.
Thanks.
Cliff
Member@Steve and/or @Libo,
Do you have any information about the option_name of the meta that is filling up the wp_options table?
Having this information will help our developers try to figure out this issue.
Thank you.
December 15, 2016 at 1:09 pm in reply to: Preview gives "Your preview doesn't have any records to import." (ICS & Google) #1206693Cliff
MemberThis reply is private.
Cliff
MemberHi, Sanjay.
I dug a little bit and <span class=”s1″>/wp-content/plugins/events-calendar-pro/src/Tribe/Geo_Loc.php uses <span class=”s2″>deg2rad()</span></span>
<p class=”p1″><span class=”s1″>The issue found in your screenshot looks potentially legit — that we’re doingdeg2rad( $lat )where$latis possibly a string.</span>
<p class=”p1″>I logged a bug internally for our developers to look into it.
I’ll mark this ticket as Pending Fix, which means this thread should receive a reply if/when the applicable fix has been released. I cannot guarantee if/when it will be fixed as it’s in the development team’s hands now. They need to assign it, code it, test it, and schedule it for release.I apologize for this issue and appreciate your understanding and patience.
Cliff
MemberNo worries at all, Douglas.
I hope your other issue(s) get resolved very soon and easily too. 🙂
December 15, 2016 at 10:38 am in reply to: Google Cal Import – shows correct time, wrong zone, imports wrong #1206568Cliff
MemberHi. Thanks for this detailed report.
Could you please share the iCal URL used to import from Google Calendar?
Once I receive that, I’ll test its import (looking for accuracy) in both “Google Calendar” and “iCalendar” import types.
Thank you.
Cliff
MemberThis reply is private.
Cliff
MemberHi, Douglas.
In our forums we keep our threads focused on just one issue at a time to ensure we fully answer each of your questions/issues. Please keep this in mind for the future and start a new thread for your additional questions from this thread. Thanks for your understanding, and I’ll answer only your first question.
It sounds like you need to enter your Google Maps API key at wp-admin > Events > Settings > APIs
Please follow this KB article to get that up-and-running and let me know if this resolves that NoApiKeys console error.
Cliff
MemberSo the file contents you shared is from /wp-content/themes/your-avada-child-theme/tribe-events/list/content.php ?
December 15, 2016 at 9:43 am in reply to: In backend, how do I see what venue is assigned to and event? #1206539Cliff
MemberStan, please see this screenshot: https://cl.ly/0v381C3e1D2X
I am guessing you’re asking for something that doesn’t currently exist.
However, you could search for events by Organizer or Venue via our Advanced Post Manager plugin. Please give that a try and let me know if that works for you.
Cliff
MemberThanks for your effort and details here.
Please look in your SFTP or cPanel File Manager for a file located here: /wp-content/debug.log and share that file’s contents.
Cliff
Membertribe_event_distance() uses tribe_get_distance_with_unit(), which is able to be filtered with tribe_get_distance_with_unit
So you could accomplish what you want 1 of 2 ways:
1)
Use the tribe_get_distance_with_unit filter, which may affect output elsewhere on your site.
https://theeventscalendar.com/tips-working-wordpress-actions-filters/ is a helpful reference.
2)
Do a template override to replace this:
<?php echo tribe_event_distance(); ?>with this:
<?php $distance = tribe_event_distance(); if ( ! empty ( $distance ) ) { echo str_replace( '</span>', ' Miles</span>', $distance ); } ?>I hope this helps.
-
AuthorPosts
