Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Crosby, just a quick update on this. We are in discussion over WPML integration and changes necessary to make integration better. This is a higher priority item so something should get done about it but I can’t promise anything or give you an ETA as to when you can expect this to be fixed. Just know we are looking into it closely and carefully.
Regards,
JonahJonah
ParticipantHey aj,
That’s getting a little more involved than what we can help you with. You may need to hire someone to help you but here are some more tips. To pull events from specific categories, you need to add the following arguments:
'tax_query'=> array(
array(
'taxonomy' => 'tribe_events_cat',
'field' => 'slug',
'terms' => 'conferences'
)
)
Where ‘conferences’ is the name of your category or an array of categories like with the post_type arg. This is likely going to conflict with pulling in your regular posts into the slider though. You’ll probably have to add your regular post categories to the terms parameter to include them as well. For more info on the arguments you can pass into the query here, take a look at the WP_Query doco: https://codex.wordpress.org/Class_Reference/WP_QueryFor the link, you’ll probably want to use tribe_get_event_link() – take a look at our doco on that: https://theeventscalendar.com/support/documentation/the-events-calendar-template-tags-link-functions/#functiontribe_get_event_link
I hope that helps!
– Jonah
Jonah
ParticipantHi Imre,
Without giving you an exact date, it will be soon 🙂
– Jonah
Jonah
ParticipantHey missmercury, I’m glad that helped! Let us know if you need anything else.
– Jonah
Jonah
ParticipantHi Chris, glad to hear you sorted that out. Let us know if you need help with anything else.
– Jonah
Jonah
ParticipantHi Dusan, what do you mean a month and a day?
– Jonah
Jonah
ParticipantOoop, actually make sure it reads like so to still include your other posts:
'showposts' => (int) get_option('chameleon_posts_media'),
'category__not_in' => (array) get_option('chameleon_exlcats_media'),
'post_type' => array('tribe_events','post')
Jonah
ParticipantHey aj,
Try add this argument below the category__not_in like so:
'showposts' => (int) get_option('chameleon_posts_media'),
'category__not_in' => (array) get_option('chameleon_exlcats_media'),
'post_type' => 'tribe_events'
Does that work?– Jonah
Jonah
ParticipantAnd you’re sure that the page has a featured image set? I get a 404 page not found when I visit http://www.merchantstreetdecatur.com/a/dining/bizou/
– Jonah
Jonah
ParticipantHi Chris,
Sorry about the confusion. Typically you would find gridview.php in /wp-content/plugins/the-events-calendar/views/gridview.php – if you wanted to modify it you would make a copy and place in an ‘events’ folder in your theme. Does that make sense and clear up the confusion?
Regards,
– JonahJonah
ParticipantHi missmercury,
Take a look at this FAQ for a possible solution: https://theeventscalendar.com/faq/my-calendar-navigation-buttons-become-misplaced-on-months-with-no-events-what-gives/
Does that help?
– Jonah
Jonah
ParticipantHi ravichandraraja,
You would need to apply some custom CSS styling to the widget to get it to match your theme’s color. The base class selector for the widget is .eventsAdvancedListWidget – using that you can style whatever you want in the widget.
Does that help?
– Jonah
Jonah
ParticipantHi Dusan, please take a look at my answer here: https://theeventscalendar.com/support/forums/topic/rss-feed-lists-post-date-not-event-date/
I hope that helps!
– Jonah
March 4, 2013 at 8:54 pm in reply to: Events list on WP-Backend list from recent to oldest/Restrict access #41549Jonah
ParticipantHi Kyle,
This snippet should help with the events order: https://gist.github.com/jo-snips/5088084 – just add that to your theme’s functions.php file.
For making the calendar private, you might want to check out these threads:
I hope that helps but let me know if you need anything else.
– Jonah
Jonah
ParticipantHi Helen,
I’m not sure why the UTC time works. Did you try this solution and did it work for you?
– Jonah
-
AuthorPosts
