Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantThanks Henry and David, please let us know if there’s anything else you need with this.
Jonah
ParticipantGuys, read: http://codex.wordpress.org/Customizing_Feeds
It’s fairly easy to create your own versions of the RSS templates by removing the feed actions and adding your own:
remove_all_actions( 'do_feed_rss2' );
add_action( 'do_feed_rss2', 'event_feed_rss2', 10, 1 );function event_feed_rss2( $for_comments ) {
$rss_template = get_template_directory() . '/feeds/feed-events-rss2.php';
if( get_query_var( 'post_type' ) == 'tribe_events' and file_exists( $rss_template ) )
load_template( $rss_template );
else
do_feed_rss2( $for_comments ); // Call default function
}
Jonah
ParticipantHey Marty,
Try passing in the date in this format instead ‘1/1/2004’ – that should work.
Jonah
ParticipantHi Wendy, can you provide a little more information about your specific issue so I can properly troubleshoot? Do you have a link I can look at with some examples?
Thanks,
JonahJonah
ParticipantHi Paul, no problem. The category pages are already there – just replace the domain and slugs with your own: http://www.your-domain.com/your-events-slug/category/your-category-slug
Try it out for some of your different event categories.
Jonah
ParticipantYeah like we’ve mentioned the code pasting is not ideal in the forums right now. Please use Pastie, Pastebin, GitHub Gists or whatever other code pasting service you want outside the forum and paste the link to your code here.
Thanks,
JonahMay 2, 2012 at 11:53 am in reply to: Separate Date and Time in events-advanced-list-load-widget-display.php File #18570Jonah
ParticipantGlad to hear Jim, let us know if there’s anything we can do!
– Jonah
Jonah
ParticipantHey Paul, the plugin doesn’t have any shortcodes at the moment. You can either use the built in category paths like /your-events-slug/category/your-category-slug which will show you a list or calendar for only that category. Or, you can build out page templates for all the other categories and customize the loop in each one but that would be a lot more work…
I hope that helps!
Jonah
ParticipantHey Andrew, as another follow up to this… I was wrong, there’s not actually going to be an auto redirect but we did change the verbiage on the settings page to be more clear. I can send you a copy of this updated code if you’d like to get it in place. Just email jonah [at] tri [dot] be and I’ll shoot it to you.
May 2, 2012 at 11:47 am in reply to: Removing links for other events @ the bottom of an individual even page #18566Jonah
ParticipantHi Kathleen,
You can easily remove the links by modifying your single event template. Make a copy of /wp-content/plugins/the-events-calendar/views/single.php and place in an ‘events’ folder in your theme. Find lines 109 & 111 and remove them. Save and refresh your page and they should be gone!
Let me know whether or not that works.
Thanks,
JonahMay 2, 2012 at 11:39 am in reply to: Feature Request: Rich Snippets for Google on Events Grid Page #18565Jonah
ParticipantHey Brian,
Thanks for the request. I’m not sure why we don’t utilize rich snippets on calendar grid like we do on other templates. I’ve re-opened an older ticket we had on this to re-open the discussion and will follow up here when I get a response.
Thanks,
JonahJonah
ParticipantYikes, sorry to hear about that. Please let me know when the site is back up and I’ll take another look.
Thanks,
JonahMay 2, 2012 at 11:31 am in reply to: How do you add a custom field to the custom advanced widget display? #18561Jonah
ParticipantHi Petter,
you sure can add custom fields to the advanced widget. All you would need to do is make a copy of /wp-content/plugins/the-events-calendar/views/events-advanced-list-load-widget-display.php and place in an ‘events’ folder in your theme and then use one of the custom field template tags to pull in your custom fields. You can find all of those template tags in our documentation here: https://theeventscalendar.com/support/documentation/events-calendar-pro-template-tags/
Let me know if you have any other questions with this.
– Jonah
Jonah
ParticipantYou’re welcome Jesse! Yes it is a nice feature to have and thanks for bringing up the question. That’s what this forum community is all about, asking questions and working to improve the plugin to improve people’s business and organization. So thanks for your contribution and keep it coming!
Cheers,
JonahJonah
ParticipantHi Andrew, alright so here’s the scoop. There’s not supposed to be anything at /submit or the base community permalink. The only end points for the plugin are /community-base-slug/add and /community-base-slug/list so as a temporary fix you can just setup links to those two pages.
We’re working on revising the verbiage and setting up automatic redirects to these end points so as to reduce any confusion about where the plugin pages are.
Thanks for bringing this to our attention and contributing to a better community and plugin! Let me know if you have any questions or run into any other issues.
Cheers,
Jonah -
AuthorPosts
