Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHey Chris,
You can easily turn off the map by going into Settings > The Events Calendar > General and unchecking this box: http://cl.ly/2k0Y3F3H3j1u0u0a1e0K
If you wanted to use a static image you could take advantage of Featured Images within events.
I hope that helps,
JonahJonah
ParticipantHi Berndt, so are you just wanting to hide the sidebar on the community event list page?
– Jonah
Jonah
ParticipantHi Mark,
Sorry about the confusion. You can accomplish this fairly easily simply by setting up your cities as categories and then to access any particular category you would just link to /events/category/city-name
Does that do what you need?
– Jonah
June 8, 2012 at 10:30 am in reply to: Fatal php error by display community/add in Event Cal Pro #20372Jonah
ParticipantGlad to hear Berndt, let us know if there’s anything else you need help with.
– Jonah
Jonah
ParticipantHi Michelle,
Unfortunately the cost field is not that robust yet. My only idea would be to setup some separate custom fields to select the currency per event. http://www.advancedcustomfields.com/ is a fantastic plugin to do this with.
Hope that helps!
– Jonah
Jonah
ParticipantHi Carrie,
You can try turning WP_DEBUG on to see what errors are there: http://codex.wordpress.org/WP_DEBUG
That will help you narrow down what it is in your theme that’s causing the issue.
– Jonah
Jonah
ParticipantAwesome Duncan, glad that worked! Let us know if you need help with anything else.
Cheers,
JonahJonah
ParticipantHi Calvin,
Ok, I’m going to need WP admin and FTP access then to take a closer look. Please email to [email protected] and reference this thread. And, do I have your permission to deactivate plugins and change things around as long as I put everything back?
Thanks,
JonahJonah
ParticipantHi Derek,
That would go in your custom_functions.php file for Thesis.
– Jonah
June 7, 2012 at 11:06 am in reply to: Fatal php error by display community/add in Event Cal Pro #20326Jonah
ParticipantHi Berndt,
Your theme must not have post_thumbnails supported for some reason. Try adding this to your functions.php file:
add_theme_support( 'post-thumbnails' );
I hope that helps!
– Jonah
June 7, 2012 at 11:00 am in reply to: Anonymous users must log in…permalinks does not cure it #20325Jonah
ParticipantHi Calvin,
Some other things to try:
1. Are you running the latest version of WordPress.
2. Have you tried deactivating all other plugins to rule out a conflict?
3. Have you tried reverting to the Twenty Eleven theme to see if it’s something with your theme?Try that and let me know what you find.
Thanks,
– JonahJonah
ParticipantHi Marc,
The Community Events plugin currently will use your theme’s page.php template and there’s no way around this that I know of. In 1.0.1 we added a couple conditional functions for you to be able to check what CE page you are on so you can use these to change things up a bit on the CE pages.
There’s tribe_is_community_edit_event_page() and tribe_is_community_my_events_page() and you can use them in your page.php theme template to adjust the code accordingly. Here’s a sample to get you started:
if(tribe_is_community_my_events_page()) {
echo 'were on the my events page';
} elseif(tribe_is_community_edit_event_page()) {
echo 'were on the add/edit events page';
}
As for splitting the forms up you can do all of this via CSS in your themes style.css file targeting the various blocks you want to reposition.
I hope that helps!
– Jonah
Jonah
ParticipantSorry all, a correction – with the EB plugin activated, the cost field will not show. This is something we need to fix and will do so in an upcoming version ASAP.
Cheers,
JonahJonah
ParticipantHi Michelle,
Yep, you’ll need to append the currency to the outputted cost.
$cost = tribe_get_cost();
echo '$' . $cost;
Cheers,
JonahJonah
Participant -
AuthorPosts
