Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi John,
First of all, don’t use query_posts, use WP_Query instead. Here’s a revised version of your code using WP_Query and some other things stripped out: http://snippi.com/s/x9flu9a – you’ll want to change the tax_query parameters to set which events category to display.
I hope that helps! Let me know if you have any questions.
Jonah
ParticipantHi Sean,
Hmmm, do you see any script errors in your browsers javascript console? Would you be willing to provide me wp-admin access so I can take a look for myself? You can post privately here. You might also try reinstalling the plugins by re-copying all the files again. And, I assume you are running the latest version of both plugins correct (2.0.11)?
Jonah
ParticipantHi beerfests,
There’s not anything easy at the moment. Some on the forums have coded their own solution so you may want to dig around a bit but you’d be pretty much on your own there. In our upcoming 3.0 release we have this built into the plugin, you can check out a preview of that here: https://theeventscalendar.com/events-3-0-preview/
Let me know if you have any other questions.
Regards,
JonahJonah
ParticipantHi Sean,
Sounds like a plugin conflict or installation issue. Have you tried deactivating all other plugins to see if that helps?
May 6, 2013 at 5:57 pm in reply to: Weird character shows up on calendar date (within a widget) #47770Jonah
ParticipantHi Jennifer,
This is something your theme is adding. Looks like an icon used for list items. You can turn this off for events with the following CSS:
#sidebar .eventsListWidget li, #sidebar .eventsAdvancedListWidget li {
background: none;
}
Add that to your theme’s style.css file and you should be good to go.May 6, 2013 at 2:12 pm in reply to: Help needed for displaying past events(archive) of a specific category #47720Jonah
ParticipantHi Pratz,
‘eventDisplay’ is not a valid arg you can pass to WP_Query. Only what you see here is: http://codex.wordpress.org/Class_Reference/WP_Query – you can pass in custom field args to target a specific date range with WP_Query. For example: http://chopapp.com/#ktei2z6e
Alternatively you can use tribe_get_events() instead of WP_Query and pass in the eventDisplay arg. We’ve got some examples here: https://theeventscalendar.com/support/documentation/the-events-calendar-template-tags-general-functions/#functiontribe_get_events
I hope that helps but let me know if you have any questions.
– Jonah
Jonah
ParticipantHi David,
This is happening because many of the events in your list span multiple days out into the future, so technically they are still upcoming. I’m not sure what we can do to change this behavior, but if you have some ideas as to how you would like it to work, I might be able to whip something up.
– Jonah
Jonah
ParticipantHi Gordon,
That’s a pretty good solution and the alternative won’t be too easy so I’m going to spare our developers looking into this. You can hide the link by targeting the .dig-in class. Let me know if you need anything else with this.
Regards,
JonahJonah
ParticipantHi Gordon,
Ok, that sounds good. What plugin are you using to load the events list widget in the tabs? Widget on Pages?
May 6, 2013 at 8:28 am in reply to: Calender of events – month view – showing an events featured image #47680Jonah
ParticipantHi Mike,
What do you have selected for the Events Template option in Events > Settings > Template?
Jonah
ParticipantHi Abraham,
Unfortunately changing the permalink structure (outside of the basic settings we provide here: http://cl.ly/image/0U0V410T1f1N) is not currently possible without more heavy customization and is not something we will be able to assist with. If you want you can request this as a possible feature for a future version too: http://tribe.uservoice.com
Sorry I cannot offer up more here. Let us know if there’s anything else you need help with.
Jonah
ParticipantHi Amit,
Your theme is hiding overflow. You need to correct this by adding the following to your themes style.css file:
.events-gridview .entry-content {
overflow: visible;
}
Does that work?Jonah
ParticipantHi Gordon,
This looks like a customization done by you or someone else to get three categorized event listings in the widget tabs. How did you set this up? Did you modify any of the widget code to get this setup this way?
Jonah
ParticipantHi rcstribe,
Thanks for sharing that! I’m sure it will be helpful for other users. Is there anything else you need here?
Jonah
ParticipantHi David,
You should definitely have “_EventDuration” in your DB upon installation of our plugins. What versions are you running?
-
AuthorPosts
