Jonah

Forum Replies Created

Viewing 15 posts - 3,136 through 3,150 (of 4,001 total)
  • Author
    Posts
  • in reply to: Is it possible to add additional fields to Venues? #18586
    Jonah
    Participant

    Thanks Henry and David, please let us know if there’s anything else you need with this.

    in reply to: Recurring events rss feed #18585
    Jonah
    Participant

    Guys, 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
    }

    in reply to: Annual Archives? #18584
    Jonah
    Participant

    Hey Marty,

    Try passing in the date in this format instead ‘1/1/2004’ – that should work.

    in reply to: Don't diplay past events in Single Venue view. #18583
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Events list on several different pages #18574
    Jonah
    Participant

    Hi 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.

    in reply to: Recurring events rss feed #18571
    Jonah
    Participant

    Yeah 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,
    Jonah

    Jonah
    Participant

    Glad to hear Jim, let us know if there’s anything we can do!

    – Jonah

    in reply to: Events list on several different pages #18569
    Jonah
    Participant

    Hey 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!

    in reply to: Community rewrite slug page not found #18567
    Jonah
    Participant

    Hey 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.

    Jonah
    Participant

    Hi 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,
    Jonah

    Jonah
    Participant

    Hey 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,
    Jonah

    in reply to: Text on Events page not updating #18562
    Jonah
    Participant

    Yikes, sorry to hear about that. Please let me know when the site is back up and I’ll take another look.

    Thanks,
    Jonah

    Jonah
    Participant

    Hi 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

    in reply to: HTML5 microformat for venue: Place vs. Organization? #18560
    Jonah
    Participant

    You’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,
    Jonah

    in reply to: Community rewrite slug page not found #18559
    Jonah
    Participant

    Hi 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

Viewing 15 posts - 3,136 through 3,150 (of 4,001 total)