Forum Replies Created
-
AuthorPosts
-
July 7, 2014 at 8:08 am in reply to: Fresh Install Drop Down Menu Doesn't Show "Add Event" + Other options #300056
matthewdenton
MemberHi:
Events Calendar Pro is an extension of our free The Events Calendar plugin. To have all functionality you need to install and activate The Events Calendar plugin on your website. You can download the plugin from WordPress.org at : http://wordpress.org/plugins/the-events-calendar/
Please let me know if this resolves your issue.
Thank you,
– Matthew
matthewdenton
MemberHi:
I see that you posted this thread twice. I’m going to mark this as a duplicate and a support team member will follow-up in your thread here.
Thank you,
– Matthew
July 7, 2014 at 7:53 am in reply to: When viewing a category calendar, navigating to next/prev month displays all #299945matthewdenton
MemberAbdhul, It’s great to hear that you got this resolved. As you seem to be all set I am going to close this thread.
If you have a minute or two we would love it if you could say a few words about our plugin here :http://m.tri.be/lo
Thank you,
– Matthew
matthewdenton
MemberHi Colinz:
The file format is supported by Google Calendar, Microsoft Outlook and other Mail/Calendar software.
If you want a printable list of Monthly events it sounds to me that you want to make a custom page that would list out only events for the current or upcoming month. This would require you to determine what information for the events you want to have displayed as well as creating a new page/view in your theme that would display the events in a format suitable for printing.
As a starting point I would take a look at the “Stub Plugin” that our team created that gets users started with creating their own views of “The Events Calendar” in that link is also references to our “Themer’s Guide”. We also have some tutorials available as well: https://theeventscalendar.com/the-events-calendar-for-wordpress-tutorials/
This should get you started with creating your own custom view, however we don’t have any feature built in to provide the functionality you are looking for.
Please let me know if you have any follow-up questions.
Thank you,
– Matthew
July 7, 2014 at 7:31 am in reply to: I want the actual publication date in RSS, not the event date. How can I revert? #299775matthewdenton
MemberHi Kevin:
Thanks for finding the function responsible for performing the modification. I had a query out to the developer that had made the changes but they’ve been out on vacation. Taking a look at the code we add the function through a filter.
add_filter( ‘get_post_time’, array(__CLASS__, ‘event_date_to_pubDate’), 10 , 3 );
As such you should be able to remove the filter using remove_filter. There are some nuances to removing filters explained in the WordPress Codex that may need to be explored but the call should be similar to:
remove_filter( ‘get_post_time’, array(‘TribeEventsTemplates’, ‘event_date_to_pubDate’), 10 );
You can place this link in your theme’s functions.php file as the theme functions file loads after the plugins.
Please let me know if this works for you.
– MatthewJuly 7, 2014 at 7:13 am in reply to: When viewing a category calendar, navigating to next/prev month displays all #299651matthewdenton
MemberHi Abdhul:
Sorry for taking a while to get back to you. I took a look a the underlying code base and we use the global $wp_query object to get the current taxonomy for creating the next/previous links. I would suggest reaching out to them and see if they are doing any custom manipulation of the $wp_query object as a starting point.
relevant code is :
if ( isset( $wp_query->query_vars[TribeEvents::TAXONOMY] ) )
$term = $wp_query->query_vars[TribeEvents::TAXONOMY];Let me know if you get this resolved out.
Thank you,
– MatthewJuly 7, 2014 at 7:05 am in reply to: Visual Content Composer Changed after Updating to WordPress 3.9 #299585matthewdenton
MemberHi, sorry for delayed response.
You can change your website’s Theme using the WordPress Admin. Log-in than go to “Appearance” > “Themes”. From this screen you can download new themes from WordPress.org and activate themes.
Thank you,
– Matthew
matthewdenton
MemberHi!
I did another review of the code base and unfortunately there is no explicit hook for when an Event is “created”. We have hooks for explicit creation of Venue and Organizer but not for an Event. I’m going to add this to our tracker as it seems like an oversight.
Until the team has a chance to look into why we don’t have a created hook separately from save you could potentially use the modified time stamp of the event to see if it is the original save.
function my_func( $eventId ) {
$event = get_post( $eventId );
if ($event->post_date != $event->post_modified) return;
// Place your code here
}
}Please let me know if the above works for you and I’ll follow-up on my end to see about getting a distinct hook created.
Thank you,
– Matthew
matthewdenton
MemberHi:
Thanks for confirming you were able to get your issue resolved out, based on your comment I am going to close this thread. Please reach back out to us if you have any other questions or issues with our products.
Thank you,
– Matthew
matthewdenton
MemberHi Peter:
Thanks for clarifying your issue and for confirming you are all set. Per your comments I am going to close this thread.
Thank you,
– Matthew
matthewdenton
Member<div>
Great!
I’m glad we were able to help. If you have any further questions feel free to reach back out to us. As you seem to be all set I am going to close this thread.
Also if you have a minute or two we would love it if you could say a few words about our plugin here :http://m.tri.be/lo
Thank you,
– Matthew
</div>
matthewdenton
MemberHi Peter:
Thanks for reaching out to us on the forums. I’m slightly confused on where you want to filter by category. I see that you have purchased the Filterbar add-on plugin that enables users to filter the Event Calendar by Category and other meta-data. You mention the admin bar, and we do have options to modify the events table to include Categories.
I’d love to be able to help, but if possible can you send me a screenshot or additional details on what you are tyring to modify?
Thank you,
– Matthew
matthewdenton
MemberSorry Todd:
I just noticed my code snippet above got corrupted 🙂 As such please go here for the code snippet that shows how to surround the title and image with links.
Thanks,
– Matthew
matthewdenton
MemberHi Todd:
The sample you worked from overlooks adding links to the content in the tooltip. If you want to have the title and image clickable you will need to modify the code so that your image and title are wrapped in the following a tag.
Please let me know if you need more details or if this works for you.
– Matthew
matthewdenton
MemberHi Stefan:
Please take a moment to review the Themer’s Guide. In the Guide it details how you can customize the different event pages. Specifically take a look at the included snippets. They outline conditionals you can place in the template files to define when to show different content.
Thanks and please let me know if you have trouble implementing the conditionals.
– Matthew
-
AuthorPosts
