Forum Replies Created
-
AuthorPosts
-
April 18, 2012 at 10:41 am in reply to: Problem with integrating Post Categories and Tags from Tutuorial #18047
Jonah
ParticipantHi Jason, I think it’s mainly a matter of customizing the queries to get what you want and this can be difficult to do in any scenario. In any case it’s going to be better to have a developer on hand to be able to work with these kinds of things.
I don’t think that 2.1 will have better integration with categories or tags – it’s probably going to be the same situation where if you want to work with things outside of what our plugin provides, you’re going to need to do some customization to get it all working right. And we can only help with this up to a limited extent.
We don’t have a public road map available but have talked about posting one but I’m not sure whether we will or not. I agree it would be a good thing to have.
For now, you can post feature request in this thread: https://theeventscalendar.com/support/forums/topic/events-calendar-pro-feature-requests/
Good luck!
April 18, 2012 at 10:34 am in reply to: Fatal Error after upgrading to Events Calendar Pro 2.0.3 from 1.3.2 #18045Jonah
ParticipantHi there, I’m back! So where are we at with this issue? I see there were some emails back and forth with Rob but what is the current status?
April 18, 2012 at 10:24 am in reply to: grid view takes ~8 seconds to load, everything else less than a second #18043Jonah
ParticipantHey Sam, we’re looking into optimization for future versions of the plugin but cannot do anything now. It’s on our radar but I can’t give you any precise dates. We’re aware that they are some performance issues and we’ve identified numerous places where we can optimize and will be doing so but it won’t happen until a future version. That’s all I can tell you now. Thanks for bringing this to our attention!
Jonah
ParticipantHey Nelson, this works fine for me in the regular calendar page but there might be something messing it up on a regular WP page. You may have to adjust the query to account for this but this is not something we can help you out with. Good luck!
April 18, 2012 at 10:08 am in reply to: Problem with integrating Post Categories and Tags from Tutuorial #18041Jonah
ParticipantHey Jason, I’m sorry but we cannot help you further with this issue. You’re going to need to either figure it out on your own or hire someone to help you. We simply do not have the resources to provide custom support like this.
Sorry and good luck!
Jonah
ParticipantHi Kim,
It’s going to be easier if you just add a line via CSS (and it will keep the code cleaner). Each event title has the class of ‘tribe-events-event-title-mini’, so you would just target this in your CSS like so:
.tribe-events-event-title-mini {
border-bottom: 1px solid #ccc;
margin: 0 0 5px;
padding: 0 0 5px;
}
If you didn’t want to apply the line to the last item you could use the :last-child pseudo selector.
I hope that helps!
Jonah
ParticipantHi Aaron,
You’re likely going to need to conditionally filter the title based upon what event related page you are on. You should be able to use these conditional wrapper to help you: https://gist.github.com/2415009
You cannot change the permalink for each month in the grid view. This is a good idea though and I would suggest you add it as a feature request here: https://theeventscalendar.com/support/forums/topic/events-calendar-pro-feature-requests/
For SEO meta and description you’ll likewise need to conditionally set these in the code through whatever SEO plugin you’re using. You’ll need to look at the plugins documentation to find out how to do this but you should be able to manually set that stuff.
I hope that helps!
Jonah
ParticipantHey Derek, not quite sure I fully understand but I think what you’ll have to do is conditionally set the title based upon if you are looking at anything event related in your feature box. Here are some basic conditional wrappers you can use for the various event related items: https://gist.github.com/2415009
I hope that helps!
Jonah
Participant@Martijn, yeah unfortunately that’s not currently possible to have fields in the Venue Information block. You can request that as a feature here though: https://theeventscalendar.com/support/forums/topic/events-calendar-pro-feature-requests/
Jonah
ParticipantHey Martijn,
Luckily you can get Venue’s to support custom fields without hacking the core. Just use the native add_post_type_support() function: http://codex.wordpress.org/Function_Reference/add_post_type_support
add_post_type_support( 'tribe_venue', array('title', 'editor', 'custom-fields') );
Honestly I wouldn’t use WordPress’ custom fields though. I would suggest looking at the much more powerful and easier to use: http://www.advancedcustomfields.com/
I hope that helps!
Jonah
ParticipantGlad that worked, let us know if you need anything else with this!
Jonah
ParticipantHi Troy,
It looks like there may be a plugin or theme conflict. You guys will need to try deactivating all other plugins and/or switching to the Twenty Eleven theme to see if there is some conflict with code in your theme.
Jonah
ParticipantHi Andrea, our plugin does not come with this functionality but there may be a plugin out there that will let you export certain posts in a certain date range. I don’t know of any off hand so you’ll need to look around a bit and see what you can find.
Good luck!
April 13, 2012 at 11:04 am in reply to: Problem with integrating Post Categories and Tags from Tutuorial #17875Jonah
ParticipantHi Jason, we’re still working on getting some decent code posting in the forums, sorry about that. For now I would suggest posting your code to Pastie/Pastebin or Gist.
Jonah
ParticipantHi there, depending on what theme you are using there are a few options for doing this. Ultimately you’ll need to either conditionally remove the sidebar in your theme code in which you’ll need to dig into PHP/HTML a bit.
On the PHP/HTML side you’ll want to figure out what you are using for the Events Template which is set in Settings > The Events Calendar > Template. If you are using the Default Events Template you’ll want to modify /wp-content/plugins/the-events-calendar/views/ecp-page-template.php – make a copy and place in an ‘events’ folder in your theme. Then, you can either remove the sidebar function call altogether in that file or conditionally remove it depending on what events page you are on. Here is some conditional code to help you with that:
if( tribe_is_event() && !tribe_is_day() && !is_single() ) { //Events List Page} elseif( tribe_is_event() && is_single() ) { //Single Events Page
} elseif( tribe_is_day() ) { //Single Event Day Page
} elseif( tribe_is_venue() ) { //Single Venue Page
}
You can just make the sidebar function call in whatever condition where you want a sidebar to display.
You may need to get a developer to help you with this though… I hope that helps.
-
AuthorPosts
