Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantYou’re welcome Meg, so is this resolved for you?
– Jonah
Jonah
ParticipantHi Elizabeth,
I don’t think there should be an actual page for events because the plugin automatically creates one and is_page() won’t work to detect that page. Instead you can use portions of this code as your conditionals for the various event related pages: https://gist.github.com/2415009
Does that help?
– Jonah
Jonah
ParticipantBummer, can you provide me WP admin access so I can dig into this a little deeper. I don’t need to change anything I just want to try and figure out why that one event is not showing up in the query… Please email to pro [at] tri.be and reference this thread.
Thanks,
JonahJonah
ParticipantHi Franck,
Make sure you have the latest version of both the base plugin and PRO (2.0.7) because the AJAX functionality works fine for me even when in an event category. It sounds like you may have some alternate setup though and I cannot guarantee that this functionality will work with that. It would help to be able to see an example of what you’ve got setup. I’ll keep an eye out for your site when it’s online.
Cheers,
JonahJonah
ParticipantHey Jason,
Sorry, I believe because the ‘venue’ query_var is not a standard one in WordPress and more plugin specific, it does not work with this filter. Your solution is the way to make it working or you could also use meta_query like so:
$query->set('meta_query', array(
array(
'key' => '_EventVenueID',
'value' => 421,
'compare' => '='
)
)
Jonah
ParticipantOh, so you want to be able to show the end date for all day events?
Jonah
ParticipantHi Berndt,
Unfortunately there’s no quick fix for this but it’s not too difficult if you’re comfortable digging into your themes template files a bit and modifying some PHP.
Basically, the Community Events plugin is using your theme’s page.php template in WordPress. So, you edit page.php and conditionally modify where/how the sidebar is being called with get_sidebar() by using the following conditional functions:
if(tribe_is_community_my_events_page()) {
echo 'this is the my events page!';
}if(tribe_is_community_edit_event_page()) {
echo 'this is the add/edit events page!';
}
Alternatively you may also be able to figure out some other way by editing your themes sidebar.php template or just doing it via code in functions.php
Sorry but I can’t spend time going into more specifics. I hope that helps.
– Jonah
Jonah
ParticipantHey Tony,
There’s no specific template tag for displaying the same list you see when going to the auto generated events list. You’ll need to use the tribe_get_events() function (https://theeventscalendar.com/support/documentation/the-events-calendar-template-tags-general-functions/#functiontribe_get_events) to put together a custom query and then style the query results to get them looking the way you want. There are a few examples in the documentation to give you an idea of how to use this function.
I hope that helps!
– Jonah
June 13, 2012 at 4:05 pm in reply to: Calendar page title shows title of an event and won't change #20637Jonah
ParticipantHey Shawn,
Glad to hear you figured it out, let us know if there’s anything else we can help with.
Cheers,
JonahJonah
ParticipantThe issues with the AJAX functionality changing the URL? Can you provide a link to your site so I can see what’s going on.
Thanks,
JonahJonah
ParticipantHi Elizabeth,
Sorry to hear about this. Have you tried switching the Events Template in Settings > The Events Calendar > Template? Try that and let me know if that does anything.
Thanks,
JonahJonah
ParticipantHey Bob,
It took me a while to see this… but you’ve got a space after the ‘end_date’ parameter that’s throwing the query off. Fix that and let me know if you still have issues with the query.
Thanks,
JonahJune 13, 2012 at 11:34 am in reply to: The Event Cal Pro – template-tags-calendar-grid-functions #20629Jonah
ParticipantHi Mike,
I don’t understand your request. Do you just want to use the widget that’s on the home page instead of the tribe_calendar_mini_grid?
Let me know,
– JonahJonah
ParticipantHi Franck,
There are currently next/prev links when viewing the event list categories @ http://yoururl.com/events/category/category-name/upcoming/ but are you asking about single events? If so, the answer is no, it can’t be done with our plugin but you could try something like this: http://wordpress.org/extend/plugins/ambrosite-nextprevious-post-link-plus/
Does that help?
– Jonah
Jonah
ParticipantHey Bob, are you all set here? Just wanted to check in…
– Jonah
-
AuthorPosts
