Forum Replies Created
-
AuthorPosts
-
September 30, 2015 at 11:25 am in reply to: Chosen styling and functionality not working after WooCommerce Update #1010149
Brian
MemberQuery Monitor is a nice debugging plugin!
I am glad to see you were able to fix this issue.
Since the issue is resolved 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,
Thanks for the interest in our plugins I can help out here.
We do not have a parent/child relationship feature of events.
The Recurring Events does make the initial event a Parent Event and the rest all have a custom field you can find that has the parent id.
You might be able to work with that, but that is all we have as a feature in the plugins.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Thanks for using our plugins. I can help out here.
If you set a Recurrence Rule to Once it should remove that rule and if you set an Exclusion to None it will remove that rule.
Does that not work for you?
As the for the tool tip. I tested on the same scenario that you did and got the same wrong message there. So it appears to be a bug.
Are you seeing a wrong tooltip on any other recurring events?
Let me know and we can go from here.
Thanks
Brian
MemberHi,
Thanks for using our plugins I can help out here.
There is not settings to disable fields on the front end, so the themer’s guide is the way to go to make changes.
This is the correct file:
plugins/the-events-calendar/src/views/list/single-event.php
Move that to your theme following the guide and then under this function:
$venue_details = tribe_get_venue_details();Add this:
if ( is_array( $venue_details ) ) {
if ( isset( $venue_details['name'] ) ) {
$venue_details['name'] = get_the_title( tribe_get_venue_id() );
}
}That should then remove the link.
Let me know how that works out.
Thanks
Brian
MemberHi,
Sorry for the issues you are having. I can help out here.
This is the date format that works for me:
10/7/2015
(mm/dd/yyyy)
And for time formatting it should look like this:
20:30:00
Including being in the 24 hour clock.
If you try it that way does it work for you?
September 30, 2015 at 8:19 am in reply to: iCal import from Google Calendar not showing All Day Events #1010053Brian
MemberHi,
Thanks for using our plugins. I can help troubleshoot on this.
I did a quick test and created an Event in gCal and was able to see the All Day Event I created to import it.
This was not a recurring import so that maybe why.
If you try a one time import does the event show then to import?
Could you share the ical link in a private reply and the name of an event not show and I can test on my end.
Let me know and we can go from here.
Thanks
Brian
MemberHi,
Thanks for the interest in our plugins. I can help out here.
See my answers below:
Is it possible, when clicking an event, to have the event page appear in a pop-up rather than a separate page?
It could be with a customization, but that is beyond the support we can provide.
I’m confused by your position on WPML. In the KnowledgeBase article you say “Starting with version 3.12 we’ll be supporting WPML compatibility…” In this post you say “The Events Calendar is not compatible with WPML“, then provide a link on how to get it working. What exactly is the current situation, and what are the timescales to finish whatever remaining work you may have?
The Events Calendar and The Events Calendar Pro are compatible with WPML. The other add-ons are not and I do not have a timeline when that might happen.
The second most voted request on the UserVoice page is charging for event subnission. Is there any movement on this?
We are working on it, but I do not have a timeline when it might be released.
Is it possible to add aditonal fields to the filter bar?
Not yet, but that is a feature we are adding in 4.0
Does the plugin or any of the addons connect to your servers for anything? If so what?
The add-ons all connect to the servers to check for updates, but nothing else.
I notice in a recent blog post you mentioned a new version. Is that a version 4 or a version 3.x?
Version 3.12 is the latest version and 4.0 is next.
Facebook event importing is important to me. I was a bit surprised that the video didn’t show what the events look like once they are imported into The Event Manager. Specifically, what information is brought across from Facebook?
They look exactly like the other events and pull in the Organizer, Venue, Title, Featured Image, Dates, and Event Information in Facebook.
On the monthly calendar, is it possible to display events from today forward, hiding past events?
It could be possible with a customization, but we do not have a feature to do that.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Thanks for using our plugins. I can try to help out, but I am limited as you said.
What is the cron running to import the xml file?
Is that the standard WordPress import with xml?
Let me know and I can try to help out.
Thanks
Brian
MemberHi,
Thanks for the interest in Facebook Events. I can help out.
Facebook Events does pull in the image with the event.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Thanks for using our plugins. I can help out here.
You are correct the plugin has changed a lot in 4 years.
You can edit the List Widget in your theme following our themer’s guide:
https://theeventscalendar.com/knowledgebase/themers-guide/
This is the template to move:
plugins/events-calendar-pro/src/views/pro/widgets/list-widget.php
to here:
yourtheme/tribe-events/pro/widgets/list-widget.php
There you could add a link to past events under the endif; to always show.
Let me know if you have any follow up questions.
Thanks
September 30, 2015 at 7:30 am in reply to: Chosen styling and functionality not working after WooCommerce Update #1010014Brian
MemberHow strange.
I have WooCommerce as well and not seeing the issue.
When I look at the scripts loaded on that page through Query Monitor I do not see any WooCommerce Scripts running.
So not sure what setting or coding you have that is causing the script to load.
You can use the Query Monitor Plugin to see all the scripts loading on that page to confirm that WooCommerc is running their chosen script:
Then we can go from there.
Thanks
Brian
MemberOk sounds good. I will leave the ticket open.
Our system does close tickets after two weeks of inactivity.
If that would happen then please just create a new ticket and reference this one.
Thanks
Brian
MemberI glanced over the coding and see this is the map function:
<?php echo tribe_get_embedded_map($post_id, 100, 800, false); ?>That should be correct as it is the function we use:
plugins/the-events-calendar/src/views/modules/meta/map.php
I think it is actually this foreach causing the issue:
foreach($posttax as $pt){
if($pt->parent == $pterm_id){
$state=$pt->name;
}
}
You might be able to do a check like this to make sure it is an arrayif ( is_array( $posttax ) ) {foreach($posttax as $pt){
if($pt->parent == $pterm_id){
$state=$pt->name;
}
}}
Beyond that I am limited in troubleshooting custom coding, but can try to help out some more.
Thanks
Brian
MemberHi,
Sorry for the issues. I tested on my account and it did not appear twice in my cart. It could have been saved there from an earlier click.
You can delete the first instance by going to this link:
https://theeventscalendar.com/cart/
And deleting it and then continue on the checkout.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Sorry for the issues. That is an overzealous warning message to help people find conflicts if they exist.
Since everything is working you do not have to change a thing.
To remove the message please add the following to your theme’s functions.php:
// remove slug conflict admin notice
if (class_exists('Tribe__Events__Admin__Notice__Archive_Slug_Conflict')) {
remove_action( 'admin_init', array( Tribe__Events__Admin__Notice__Archive_Slug_Conflict::instance(), 'maybe_add_admin_notice' ) );
}Let me know if that helps.
Thanks
-
AuthorPosts
