Forum Replies Created
-
AuthorPosts
-
January 25, 2012 at 9:32 pm in reply to: Looking for a way to merge Event Category with Blog Category #14166
Jonah
ParticipantHey Jason,
What you’ll probably want to do is create a specific blog category template and in that throw in the code above to add in the specific events you want. Here’s information on creating specific category templates in WordPress: http://codex.wordpress.org/Category_Templates
Good luck!
January 25, 2012 at 3:04 pm in reply to: Events listed by Venue displaying all events not just future events. #14143Jonah
ParticipantWould you mind emailing me WP admin access to jonahcoyote [at] gmail [dot] com so I can take a look at some things?
January 25, 2012 at 3:00 pm in reply to: Removing one category of events from main event list and calendar. #14141Jonah
ParticipantHey Seth, I wonder if this is because not that you’re excluding a category from your list you do not have enough events to display the prev/next links?
January 25, 2012 at 2:38 pm in reply to: Looking for a way to merge Event Category with Blog Category #14138Jonah
ParticipantOoops, code got messed up, try this instead:
query_posts(array(
'eventDisplay'=>'month',
'post_type'=>'tribe_events',
'tax_query'=>array(
array(
'taxonomy' => 'tribe_events_cat',
'field' => 'id',
'terms' => 4,
'operator' => 'NOT IN'
)
)
));
Make sure to wrap it in opening/closing php tags.
January 25, 2012 at 2:37 pm in reply to: Removing one category of events from main event list and calendar. #14137Jonah
ParticipantGot an example I can look at?
January 25, 2012 at 2:36 pm in reply to: Looking for a way to merge Event Category with Blog Category #14136Jonah
ParticipantHey Jason, you’ll need to adjust your category query to include events in a specific event category. Try opening up your theme’s category.php file and adding the following code before the if(have_posts()) bit:
'tribe_events',
'tax_query'=>array(
array(
'taxonomy' => 'tribe_events_cat',
'field' => 'id',
'terms' => 4,
'operator' => 'IN'
)
)
));
?>
Where ‘terms’ contains the ID of the events category you’d like to include. Let me know whether or not that helps.
January 25, 2012 at 2:32 pm in reply to: Removing one category of events from main event list and calendar. #14134Jonah
ParticipantGlad to hear Seth!
January 25, 2012 at 2:31 pm in reply to: Events listed by Venue displaying all events not just future events. #14133Jonah
ParticipantHi Jason, by default it should not be doing this. Do you have a custom single-venue.php file in place in an ‘events’ folder in your theme? Can you pastebin.com your custom single-venue.php if you have one?
Thanks,
JonahJonah
ParticipantGlad to hear that worked for you Sheila!
January 25, 2012 at 11:50 am in reply to: Organizer heading not displaying on single event page in ECP 2.0.1 #14115Jonah
ParticipantHi Wesley, no it has not been fixed yet. Hopefully with 2.1 but no guarantees. For now you’ll need to remove the conditional tags as I outlined above.
Thanks,
JoanhJonah
ParticipantHi Sheila,
Those two divs, the description div and the event meta data div are side by side and normally the description div would be narrower but your theme CSS is overriding the width set on that in events.css. Here is the declaration from your theme CSS:
.block-type-content div.entry-content {
width: 100%;
margin: 20px 0;
}
You can override this by using a higher CSS specificity (http://css-tricks.com/specifics-on-css-specificity/) like so:
#tribe-events-loop div.entry-content {
width: 50%;
}
That should point you in the right direction but let me know if you need more help with this.
– Jonah
Jonah
ParticipantHi Sheila,
The easiest way to do this is to just hide it with CSS like so:
.eventsAdvancedListWidget .dig-in {
display: none;
}
Jonah
ParticipantGlad that worked Mike, if there’s anything else we can do don’t hesitate to ask. And if you feel up to it we’d really appreciate if you mentioned us on Twitter, Facebook or your blog if you have one!
Thanks,
JonahJonah
ParticipantAwesome Grace, we’ll close out the thread then!
Jonah
ParticipantAwesome, glad to hear!
-
AuthorPosts
