Jonah

Forum Replies Created

Viewing 15 posts - 2,731 through 2,745 (of 4,001 total)
  • Author
    Posts
  • in reply to: Venue/List Page (map and CSS) #20406
    Jonah
    Participant

    Hey 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,
    Jonah

    in reply to: Right Sidebar moves over Calendar #20390
    Jonah
    Participant

    Hi Berndt, so are you just wanting to hide the sidebar on the community event list page?

    – Jonah

    in reply to: Problem Posting Multi-city Tours #20376
    Jonah
    Participant

    Hi 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

    Jonah
    Participant

    Glad to hear Berndt, let us know if there’s anything else you need help with.

    – Jonah

    in reply to: Currency in Event Cost field #20370
    Jonah
    Participant

    Hi 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

    in reply to: Error at HEAD #20368
    Jonah
    Participant

    Hi 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

    in reply to: Conflict #20363
    Jonah
    Participant

    Awesome Duncan, glad that worked! Let us know if you need help with anything else.

    Cheers,
    Jonah

    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Thesis Theme and "No_Sidebars" template #20333
    Jonah
    Participant

    Hi Derek,

    That would go in your custom_functions.php file for Thesis.

    – Jonah

    Jonah
    Participant

    Hi 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

    Jonah
    Participant

    Hi 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,
    – Jonah

    in reply to: Template issue in custom theme #20324
    Jonah
    Participant

    Hi 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

    in reply to: Event cost when not associating event with Eventbrite #20322
    Jonah
    Participant

    Sorry 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,
    Jonah

    in reply to: Currency in Event Cost field #20321
    Jonah
    Participant

    Hi Michelle,

    Yep, you’ll need to append the currency to the outputted cost.


    $cost = tribe_get_cost();
    echo '$' . $cost;

    Cheers,
    Jonah

    in reply to: Conditional 'Buy Ticket' button with anchor link #20320
    Jonah
    Participant

    Hi Michelle,

    This should work for you: https://gist.github.com/2890200

    Cheers,
    Jonah

Viewing 15 posts - 2,731 through 2,745 (of 4,001 total)