Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi,
Sorry for the delay in responding here.
We currently, do not have it as a feature to sync the images as you like.
We do have a ticket in place to add this feature to the plugins and I have added your thread here to that ticket.
I do not have a timeline for when this might be added though.
Let me know if you have any follow up questions.
Thanks
December 1, 2015 at 12:49 pm in reply to: Site Fees are being calculated on entire order not only the ticket line items #1033413Brian
MemberGreat, glad it helps.
I am going to close this ticket to new replies, but the issue is still open and we will update this ticket once we release a fix.
It as the other issue are not in 4.0, but hopefully will be included in 4.0.1. Please wait until you hear from us in this thread before updating.
If you have any new questions or issues please create a new ticket and reference this one.
Thanks
December 1, 2015 at 12:47 pm in reply to: get_tribe_venue(); not working on mobile calendar view #1033412Brian
MemberOk are you adding it directly to that template?
It has to be placed in the single-events.php and then the javascript template has to be modified according to that template.
I do not have a good example of that, but this plugin show hows to modify the tooltip with this information:
https://github.com/bordoni/tec-forum-support/tree/plugin-945349
This is another example to that could be modified fro the mobile.php:
Add Organizer, Venue and Price info to tooltips in Week and Month view
I can try to help out some more, but I am limited in support 3rd party customizations so might not be able to provide information on this entire process.
December 1, 2015 at 12:30 pm in reply to: Showing the featured image in the monthly calendar view. #1033400Brian
MemberHi,
Glad it is moving forward.
I have a guide here that does close to what you are looking for:
https://theeventscalendar.com/knowledgebase/horizontal-list-widget/
Or you could use our themer’s guide:
December 1, 2015 at 7:24 am in reply to: Follow Up: Widget calendar listing events with no result #1033232Brian
MemberHi,
That function runs before the Mini Calendar is even loaded so I do not think there is a way to make an exception for it.
I only have this list of conditionals and none are for the mini calendar and i searched and there is none there.
https://gist.github.com/jesseeproductions/903f5ca75877b713c674
You could use the conditionals there and try to only run it on Event Views and Pages and that way the mini calendar would work everywhere else just not when in the event section.
That is about all we have on this unfortunately.
December 1, 2015 at 7:17 am in reply to: get_tribe_venue(); not working on mobile calendar view #1033229Brian
MemberHi,
You mean tribe_get_venue() as get_tribe_venue() does not exist in the plugins.
You have to pass the event id to tribe_get_venue() to get it to work correctly here.
Which template are you putting it in?
Brian
MemberHi,
We have this tutorial for custom event loops:
Or you can look at WordPress’s WP Query Class:
Brian
MemberGreat, glad it helps, I am going to go ahead and close this ticket, but if you need help on this or something else please post a new ticket.
Thanks!
Brian
MemberDuplicate of this thread:
So closing this one out and we will help you there.
Brian
MemberHi,
I can help out here.
Have you marked the orders complete in WooCommerce?
Until they are marked complete they will not show in the Attendees List.
Let me know if you have done that and we can go from here.
Thanks
Brian
MemberHi,
That is a overzealous warning that might notify you there is an issue.
If everything is working then you are good.
If you would like to remove the message add this snippet:
// 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' ) );
}To your theme’s functions.php.
Thanks
November 30, 2015 at 5:03 pm in reply to: mutliple event calendars on one site for different categories of events #1032904Brian
MemberHi,
Thanks for the interest in our plugins.
The plugin does create a Category View for each Event Category with the main views of month, list, map, etc…
For example if you have an event category of Lettuce the url is this:
yoursite.com/events/category/lettuce/
So that is one way to show only events from one category in the main views and you can link directly to any of those.
You can try it out in the core version of the Events Calendar found for free on WordPress.org: https://wordpress.org/plugins/the-events-calendar/
Cheers
November 30, 2015 at 3:23 pm in reply to: Bug: Updating Cart with non Tribe Event item empties the cart #1032858Brian
MemberHi,
Sounds good.
I am going to close this ticket to new replies, but the issue is still open and we will update this ticket once we release a fix.
This fix will not be in 4.0 so I would wait until we notify you hear that the newest release resolves your issue.
If you have any new questions or issues please create a new ticket and reference this one.
Thanks
November 30, 2015 at 3:20 pm in reply to: Site Fees are being calculated on entire order not only the ticket line items #1032857Brian
MemberHi,
I do not have a timeline for the release, but I believe I found the issue and a way to fix it.
In this file:
the-events-calendar-community-events-tickets/src/Tribe/Cart.php
Around line 41 this check is always returning true:
// if the event doesn't exist, skip
if ( ! $event ) {
continue;
}
As this always returns something: $event = get_post( $event_id );If instead you change it to this:
// if the event doesn't exist, skip
if ( ! $event_id) {
continue;
}I tested on my site and that worked for me.
Does that work for you?
Thanks
Brian
MemberGreat, glad it helps, I am going to go ahead and close this ticket, but if you need help on this or something else please post a new ticket.
Thanks!
-
AuthorPosts
