Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi Chris,
Ok not sure what the issue is, it could include other functions for the next release that breaks it. I removed the link just in case.
Instead in this file:
the-events-calendar/src/Tribe/Template/Month.php
Around line 159 replace this:
// get all the ids for the events in this month, speeds up queries
$this->events_in_month = tribe_get_events( array_merge( $args, array(
'fields' => 'ids',
'start_date' => $this->first_grid_date,
'end_date' => $this->final_grid_date,
'posts_per_page' => - 1,
) ) );With this:
$args = array_merge( $args, array(
'fields' => 'ids',
'start_date' => $this->first_grid_date,
'end_date' => $this->final_grid_date,
'post_status' => array( 'publish' ),
'posts_per_page' => - 1,
) );if ( is_user_logged_in() ) {
$args['post_status'][] = 'private';
}$args = apply_filters( 'tribe_events_in_month_args', $args );
Let me know if that fixes the issue.
Cheers
July 14, 2015 at 9:57 am in reply to: How to use "if_fuction_exists" to prevent fatal errors #986325Brian
MemberGreat glad it helps.
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberHi,
Thanks for the information.
This is the file that controls the nav:
list/nav.php
So it appears some changes were made there.
You maybe to just delete the file in your theme and use the plugins version of the template or you will have to update it to match the current template found here:
the-events-calendar\src\views\list\nav.php
Let me know if removing or updating that template fixes the issue.
Thanks
Brian
MemberHi,
I can answer your questions as both a developer of the plugin and on the support team.
I do not have any update on the status of adding that as a filter to the filter bar.
Unfortunately, we do not release our roadmap or give a timeline for any feature until it is ready to be shipped in at least beta form.
I can say this feature will not be in the 3.11 release, which will be out in the next couple of weeks.
Also, I am not sure if we would accept coding and integrate it into the plugin. It would depend on the coding itself, but we would not reject it outright and would give it a look over.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Thanks for using our plugins I can help out here.
I am not able to support Event Rocket here, but with the latest update the widget shortcodes such as [event_rocket_list] were removed.
And now we have the [tribe_events_list] to replace it.
Do you have any custom templates in your theme for the list widget?
With 3.10 we had to make some changes and if you do not update those custom templates the Events will not show.
In the list-widget.php template you can add these to the top and that might fix the issue instead having to redo custom work:
$events_label_plural = tribe_get_event_label_plural();$posts = tribe_get_list_widget_events();
Add that before the check for if($posts).
Let me know how that works out.
Cheers
July 14, 2015 at 7:09 am in reply to: How to use "if_fuction_exists" to prevent fatal errors #986254Brian
MemberHi,
Thanks for using our plugins I can help out here.
You can us if class exists to wrap coding for the Events Calendar or WooCommerce tickets and it will only run then if the plugin is active.
This code checks for The Events Calendar and Pro to be active:
if ( class_exists( 'Tribe__Events__Main' ) && class_exists( 'Tribe__Events__Pro__Main' ) ) {
//coding here
}This code checks for WooCommerce Tickets to be active:
if ( class_exists( 'Tribe__Events__Tickets__Woo__Main' ) ) {
//coding here
}Let me know if that works for you.
Thanks
Brian
MemberHi,
Sorry for the issues on the ip address. I have not ever seen that before.
I visited your site, but could not visit any event pages, it would always forward me to the home page.
Please verify the Events Calendar Plugin is active and I can take a look.
Thanks
Brian
MemberHi,
I am not sure what you are referring to, where is the date format need to be changed?
Is it saved somewhere and you need to change it?
Let me know the process and I can try to help out.
However, I am limited in support customizations, but can try to point you in the right direction.
Cheers
Brian
MemberHi Again,
If you add Pro to your site all the events and settings will remain. Pro is an Add On to The Event Calendar so it adds more features, but does not replace The Events Calendar. You will need both plugins for it to work.
As for the previous event links. Does you theme also include any custom templates for the list view? If you are not sure please list all the files in the /tribe-events/ directory of your theme.
Let me know and we can go from there.
Thanks
Brian
MemberHi,
If you do have events templates in your theme that is what I was referring to by custom templates.
You want to drop the coding in like this:
if ( !defined(‘ABSPATH’) ) { die(‘-1′); }
$events_label_plural = tribe_get_event_label_plural();$posts = tribe_get_list_widget_events();
//Check if any posts were foundLet me know if that helps.
Thanks
Brian
MemberHi,
Sorry for the issues you are having. There is a bug when going between months in the calendar it does not take into account the category and displays all events instead.
We have a bug ticket to address this ASAP, but I do not have any information on the resolution for this right now.
This thread has been added to our bug report and we will update it once we release a fix.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi Derek,
Unfortunately, since both Infusionsoft and Gravity Forms are not our products, we are not going to be able to help out.
I would try contacting those companies directly for help.
Cheers
Brian
MemberHi Akbar,
EDD Tickets requires the core version of the Events Calendar found for free on WordPress.org: https://wordpress.org/plugins/the-events-calendar/
Tickets can only be created inside of events in the admin.
That is the same for all our ticketing plugins.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Sorry for the issues you are having. I can help troubleshoot this with you.
I took a look at your site and see the first event. However, it is showing correctly.
The way that event is setup it starts on July 8th and ends on August 26th. That setup is telling the plugin that the Event is everyday from the 8th to the 26th and will be the first event shown until after the 26th as it has the earliest start date.
If you are only intended it to be an event setup every Wednesday you will want to create a new event as a recurring event.
Set the start and end date and time for the first day of the series. Then setup the recurrence to weekly and set an end date for the last time the event will happen.
You can read more about recurring events here:
https://theeventscalendar.com/knowledgebase/pro-recurring-events/
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi Again,
I have not used the Author Box much, but I think this code will work for you:
https://gist.github.com/jesseeproductions/346e3289d2b0705205da
Add that to your theme’s functions.php and the Author Box should be removed.
Let me know how that works out.
Thanks
-
AuthorPosts
