Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Davida,
So are you all set here or did you still need help with this?
– Jonah
Jonah
ParticipantHi Lukasz,
The Yet Another Related Posts Plugin is probably place the related posts underneath the event content but before the iCal/Google links. My suggestion would be to make a copy of /wp-content/plugins/the-events-calendar/views/single.php and place in an ‘events’ folder in your theme. Then, edit single.php and manually place in the Yet Another Related Posts Plugin code wherever you need it to appear.
If you want to go the CSS route, you can add whatever CSS you want to your theme’s style.css to arrange things how you want.
I hope that helps,
JonahJonah
ParticipantHi Torstein,
Sounds like some installation problems… It could very well have to do with the fact that the folder name changed in a more recent version. What I would suggest is to manually install 2.0.7 and ensure that all the plugin files get copied over.
Let me know if you have any other troubles with this.
Thanks,
JonahJonah
ParticipantJonah
ParticipantHi Tai,
The first thing you’ll want to check is what do you have set as your Events Template in Settings > The Events Calendar > Template? If you have the “Default Events Template” selected, then you’ll want to make a copy of /wp-content/plugins/the-events-calendar/views/ecp-page-template.php and place in an ‘events’ folder in your theme and edit away to modify the title. Here is an example from another theme as to how you could do this: https://gist.github.com/aad337b8f0662d4df1b6
If you are not using the Default Events Template, you’ll be using one of your themes page templates (either page.php or some other template) that you can edit in the same way.
Note that either of these templates is only going to control the main event pages (grid/list), Venues, and Single Days. Not Single Events. Single Events use either the ecp-single-template.php if you have “Default Events Template” selected or your theme’s single.php template.
That should point you in the right direction but let me know if you need any other help with this.
Cheers,
JonahJonah
ParticipantHey Tony,
Your best bet to limit the backend display is going to be using something like: http://wordpress.org/extend/plugins/admin-menu-editor/ or http://wordpress.org/extend/plugins/adminimize/
The latter is my personal fav but I’ve used both with good success. Again, this is only a temporary workaround and we’ll get all the permission stuff and backend stuff fixed in an upcoming version.
Hopefully that gives you everything you need to move forward with this! Thanks for being patient and working with us on this.
Cheers,
– JonahJonah
ParticipantHi Tony,
I’m not sure why that would be, it works fine for me. Could be a conflict with another plugin or your theme or the code itself. Since this is a customization issue you’ll need to figure it out on your own. Good luck!
– Jonah
– Jonah
Jonah
ParticipantHi Tony,
This is an issue with CSS your theme is applying. On line 1217 of your layout.css file you have:
.widget {
clear: both;
position: relative;
overflow: hidden;
padding: 30px 0 30px 0;
float: none;
}
The ‘overflow: hidden;’ property is what is causing the issue. Either remove that or override it and that will fix the issue.Cheers,
JonahJonah
ParticipantAwesome! Glad to hear Paul. Let us know if there’s anything else we can help with.
Cheers,
JonahJuly 3, 2012 at 11:16 am in reply to: Thousands of URLs for every future date possible auto generated. Possible bug? #21464Jonah
ParticipantHi Vincent,
If you are getting an error it’s probably because you don’t need to paste in the opening PHP tag. Try just adding this at the bottom of your functions.php file:
if (class_exists( 'TribeEvents' ) )
add_action('wp_head','tribe_dont_index_day_views');function tribe_dont_index_day_views() {
$tribe_ecp = TribeEvents::instance();
if( $tribe_ecp->displaying == 'day' )
echo '';
}
– Jonah
Jonah
ParticipantHi Kyle,
This is an interesting idea and I would suggest you post it in our feature requests thread: https://theeventscalendar.com/support/forums/topic/events-calendar-pro-feature-requests/
Thanks,
JonahJonah
ParticipantHi Drew,
We do have a ticket to take care of this in an upcoming release. No guarantees it will make it in the next one but we’re aware of the potential conflict.
Thanks for bringing it up again and for sharing your solution,
JonahJonah
ParticipantHi Michelle, we have two conditionals you can use to detect the community pages:
if(tribe_is_community_my_events_page()) {
echo 'this is the my events page!';
}if(tribe_is_community_edit_event_page()) {
echo 'this is the submit/edit events page!';
}
I hope that helps!
– Jonah
Jonah
ParticipantHi Tony,
As mentioned in my email reply this appears to be primarily permissions based. If anyone else is noticing this issue too I’ve filed tickets to have this fixed ASAP but in the interim you can fix this by installing the Members plugin (http://wordpress.org/extend/plugins/members/) and then modifying the permissions of the subscriber role so they match the following: http://cl.ly/2v2H300C0i39473W0C3r
I hope that helps!
– Jonah
Jonah
ParticipantHi Ken,
Yes, please move the widget back into place and let me know where exactly to find it.
Thanks,
Jonah -
AuthorPosts
