Forum Replies Created
-
AuthorPosts
-
May 14, 2012 at 6:36 pm in reply to: More than One Calendar, Segregated and kept Published Separately #19166
Jonah
ParticipantSounds good Naomi!
May 14, 2012 at 10:55 am in reply to: More than One Calendar, Segregated and kept Published Separately #19159Jonah
ParticipantHi Naomi,
Thanks for your post. First off, I just want to say that you may be running into issues by running the two plugins side by side and the first thing you should try is to deactivate the other plugin to see if this clears things up.
In this case though you shouldn’t need to do that. To remove the links at the bottom of single events all you need to do is modify the single events template located in /wp-content/plugins/the-events-calendar/views/single.php – make a copy of this file and place in an ‘events’ folder in your theme. Then, open up the file for editing and at the bottom on lines 109 & 111 you’ll see the code for the prev/next links. Just remove those lines, save and they should be gone!
For the category specific back links you can use something like this: https://gist.github.com/2004548
You’ll want to again modify single.php where the current back link is.
I hope that helps but let me know if you need anything else!
Cheers,
JonahJonah
ParticipantHi John,
There’s no easy way to do this now. You need to tap into the formCategoryDropdown() function but we don’t have a filter for it so you would need to modify the core to change the category selection at all. I’ve just created a ticket to add this functionality in a future version and we’ll likely add this functionality soon as it’s a pretty important function to be able to control what categories are displayed.
Cheers,
JonahJonah
ParticipantHey all, closing this out because it is resolved. If any further issues come up that are related, please open a new thread.
Thanks,
JonahJonah
ParticipantHi Kyle,
Maybe a CSS issue or maybe a plugin conflict? Have you tried deactivating all other plugins? Are there any differences in theme CSS between the two sites?
Jonah
ParticipantHi Michael,
I think you can solve this by simply adding a conditional wrapper to check whether or not the event post is password protected. You can do that by editing /wp-content/plugins/the-events-calendar/views/single.php – make a copy of this and place in an ‘events’ folder in your theme. Then wrap all the code in the following:
Put this at the top of single.php:
if ( post_password_required() ) {
$output = get_the_password_form();
echo $output;
} else {
..and this all the way at the bottom:
}
You’ll need to wrap that code in PHP tags so it executes properly too.
I’m not sure whether or not this should be built in to our templates and will create a ticket for the devs to take a look.
Let me know whether or not this helps.
Cheers,
JonahJonah
ParticipantHey Javier,
There are a few ways you can style specific events categories. When you are on a particular category viewing the calendar you can tap into the .events-category-{your-category-slug} body class (replace your-category-slug with the slug of your category) or for individual events you can also use .cat_{your-category-slug} to specifically target events in certain categories in the calendar itself…
Does that help?
Jonah
ParticipantHey Benji, glad that worked! To get the venues in there just add the following:
.page .page, .post, .post-wrap .tribe_events, .post-wrap .tribe_venue {
margin: 0;
padding: 30px;
}
May 14, 2012 at 9:34 am in reply to: Template file table-mini.php to show next/previous month using Ajax #19150Jonah
ParticipantHi Max,
The next couple of months would not be too far fetched. Keep an eye out!
Cheers,
JonahJonah
ParticipantGlad to hear you got this worked out Audrey! If there’s anything else you need, just let us know.
Cheers,
JonahJonah
ParticipantHi Benji,
I don’t know about other plugins but there is support for the awesome WordPress SEO plugin: http://wordpress.org/extend/plugins/wordpress-seo/
Have you tried that?
May 14, 2012 at 8:15 am in reply to: Template file table-mini.php to show next/previous month using Ajax #19138Jonah
ParticipantHi Max,
This feature is currently not available and would need to be built as an extra. We do have this on our radar for a future version so hopefully sooner than later it will be implemented.
Let us know if there’s anything else you need help with.
Cheers,
JonahJonah
ParticipantHey Benji,
In your theme’s style.css on line 681 you have this:
.page .page, .post {
margin: 0;
padding: 30px;
}
You need to add a class for events like so:
.page .page, .post, .post-wrap .tribe_events {
margin: 0;
padding: 30px;
}
Jonah
ParticipantHi Javier,
What exactly are you trying to accomplish? Are you needing to apply specific styling to event categories within your website?
Cheers,
JonahMay 14, 2012 at 7:38 am in reply to: Error when event is set to reoccur when set to daily or weekly or custom #19116Jonah
ParticipantHi Michele,
I cannot guarantee that changing the permalinks will not mess anything because I don’t know all of the particulars about your setup. But in general changing permalinks is a relatively harmless operation and actually provides benefits like SEO due to having more readable URL’s. My suggestion would be to backup your website so you can revert if things go awry.
Good luck!
-
AuthorPosts
