Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Jason, glad you figured it out. If there’s anything else we can help you with let us know.
Jonah
ParticipantHey Dan, can you post some code samples and maybe a link where I can see what you’ve got (or even a screenshot) in place now?
Thanks,
JonahJanuary 9, 2012 at 7:33 pm in reply to: Calling a list of Events outside of WordPress directory #13104Jonah
ParticipantHi David, if you take a look at the tribe_get_events function in our documentation I’ve put an example there giving you an idea how you can use this function to query your events wherever you want: https://theeventscalendar.com/support/documentation/the-events-calendar-template-tags-general-functions/#functiontribe_get_events
Let me know whether or not that helped.
– Jonah
January 9, 2012 at 7:30 pm in reply to: image rotator on idex page stopped working with plug-in install #13103Jonah
ParticipantDo you have a link we can take a look at Melissa?
Jonah
ParticipantHi Mike,
As easy fix would be to modify the CSS for your .hentry class like so:
.hentry {
width: 680px;
overflow: visible;
}
It might not be the best solution because it will likely affect styling on other pages but you’re somehow going to need to play with the CSS to adjust the widths of your main content area so it’s not getting cut off.
I hope that helps,
JonahJonah
ParticipantHi Jonny, unfortunately there is no way I can think of to do this currently but I’ve added it as a feature request.
Jonah
ParticipantHi Kyle,
You’ll need to hook into the pre_get_posts action like so: http://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts
You’ll want to conditionally apply the query changes only for is_search() and pass in additional parameters to specify for example only upcoming events (‘eventDisplay’=>’upcoming’).
If you also want to apply query filtering by date you can use ‘start_date’=>’1/9/2012’ & ‘end_date’=>’1/9/2012’ for example (you’ll want to change the dates and dynamically populate with todays date).
Jonah
ParticipantHi Robert, sorry for the confusion. I was incorrect in thinking you could use a shortcode (there is no shortcode). The solution to the full width problem in Genesis is somewhat complex because Genesis is kind of a complex theme.
1. Set your Events Template to “Default Page Template” if it’s not already.
2. Set the layout dynamically for the grid view (add to functions.php file in Genesis child theme): http://pastebin.com/SGSP5RzU
3. Optionally setup body classes to be able to target specific HTML elements (again paste in functions.php in Genesis child theme): http://pastebin.com/cJkkBpCL
4. Hide sidebar (if it’s still displaying underneath the calendar:
.events.grid #sidebar {
display: none;
}
That should about do it. The second step should definitely give you a full page layout and steps 3 & 4 are to cover some extra bases in case you need to still hide the sidebar below the full width calendar.
I hope that helps 🙂
Jonah
ParticipantIn ‘terms’, make sure to use the slug of your “category”.
Jonah
ParticipantHi Caleb, The Events Calendar uses taxonomies for categories so you can’t filter by category in the same way. To filter by taxonomy you would use something like this:
tribe_get_events(
array(
'eventDisplay'=>'upcoming',
'posts_per_page'=>3,
'tax_query'=> array(
array(
'taxonomy' => 'tribe_events_cat',
'field' => 'slug',
'terms' => 'my_cat_name'
)
)
);
January 9, 2012 at 5:06 pm in reply to: Search results displaying the incorrect URL for recurring events #13079Jonah
ParticipantRob, I was experiencing it in 2.0.1 and 2.0.2 – ticket is #14231
Jonah
ParticipantHey Jason, this is very strange… What version of The Events Calendar and WordPress are you running? I would first suggest reinstalling both. Second, is there any code in your theme or a plugin that could be removing the events.css? Try disabling all plugins except for The Events Calendar and checking again and try switching to the default Twenty Eleven theme to see if that fixes it… Let me know what you find.
Jonah
ParticipantHey Caleb,
Can you provide an example of what you are experiencing and some code samples to give me an idea of what the problem could be?
Jonah
ParticipantHi Jason,
It should be being loaded in single-venue.php and any events template file. Can you provide a link to your site so I can view the source?
Thanks,
JonahJonah
ParticipantHi Paul, sorry for the delay on this but I’ve finally had a chance to take a look at things. I’ll go through the items in the email you tried to send to me:
On #1, try switching the Events Template in Settings > The Events Calendar to “Default Page Template” which will force the plugin to use your themes native page template instead of the more generic Events Calendar page template. That should resolve the Venue info display.
On #2 and #3 I’m suspecting there is either a conflict with another plugin or with your theme. What I’d like to do to at least rule this out, is disable all plugins and/or revert the default TwentyEleven theme to see if this resolves the issues. Do you want to try this on your local dev or can I do it on the remote site?
Thanks,
Jonah -
AuthorPosts
