Jonah

Forum Replies Created

Viewing 15 posts - 3,916 through 3,930 (of 4,001 total)
  • Author
    Posts
  • in reply to: Tooltip not showing #12126
    Jonah
    Participant

    Hi Sagi, glad you figured it out! Let us know if there’s anything else we can help you with.

    in reply to: Few Questions #12082
    Jonah
    Participant

    Hi Karen,

    Ooops left out the bit about the +GoogleCalendar button. Just add:

    [css]
    .single .ical, .single .gcal-add, .events-single #googlemaps {
    display: none;
    }
    [/css]

    in reply to: Gantry Frame Work Issue #12079
    Jonah
    Participant

    Hi Vincent,

    It sounds like a problem with the Gantry plugin since it’s referencing the error in a file for that plugin (plugins/gantry/admin_functions.php on line 539). I would contact the support through that plugin and see what they can do for you.

    Good luck!
    Jonah

    in reply to: List all events and sort by latest date #12078
    Jonah
    Participant

    If you are working with WP_Query you should be able to use all parameters available to it. However, I would suggest using the plugin native function tribe_get_events instead because if you’re trying to orderby with WP_Query it’s going to order by the published date and not the date of the events.

    To query using tribe_get_events you would do something like this:

    global $post;
    $all_events = tribe_get_events( array('eventDisplay'=>'all', 'posts_per_page'=>-1) );
    foreach($all_events as $post) : setup_postdata($post);
    echo '';
    the_title();
    echo '
    ';

    if ( has_post_thumbnail() ) {
    echo '<a href="';
    the_permalink();
    } else {
    echo the_excerpt();
    }
    endforeach;

    You can change eventDisplay to ‘past’, ‘upcoming’, ‘day’, ‘all’ or ‘month’ and then you can still use all the other parameters available with WP_Query.

    Hope that helps,
    Jonah

    in reply to: Single.php won't take effect #12077
    Jonah
    Participant

    Hi Jason, I assume you’ve got the latest version of the plugin or do tell, what version are you running?

    Let me get this straight, you are using a custom page template for both your events calendar page and the single event pages? I don’t fully understand the explanation of your setup. Can you paste in some code samples and/or provide me FTP access so I can take a look? Email them to jonahcoyote [at] gmail [dot] com

    – Jonah

    Jonah
    Participant

    You’re welcome, let us know if there is anything else you need help with.

    in reply to: Tooltip not showing #12040
    Jonah
    Participant

    Hi Sagi,

    The only script errors on the page are related to the sharing toolbar at the bottom of your site. Have you tried disabling this?

    The events.js is loaded so tooltips should be showing… Do you have any code in your theme that could be conflicting? Have you tried reverting the theme to the base TwentyEleven?

    Jonah
    Participant

    Hi Ashley, you can certainly adjust the image sizes however you want. If you look in single.php we just use the_post_thumbnail() to display the image.

    You can either pass in default parameters for sizing, i.e. ‘thumbnail’, ‘medium’, ‘large’, ‘full’. Or, you can add your own sizes via the add_image_size() function in WordPress and then use this size as a parameter.

    More details on image sizing in WordPress can be found at: http://codex.wordpress.org/Function_Reference/the_post_thumbnail

    Note, if you’re going to modify single.php make sure to do within an ‘events’ folder in your theme so as not to lose your changes when updating.

    Jonah
    Participant

    Hi Kevin, there’s definitely something strange going on with the tribe_get_organizer_link() function. I’m going to log a ticket to get this cleaned up but in the interim you can remove the conditional tags:


    if ( tribe_get_organizer_link( false, false ) ) :

    And this will display the organizer header. I don’t think this function was meant to be used as a conditional and that’s what’s causing problems.

    Does that help?

    in reply to: Few Questions #12031
    Jonah
    Participant

    Note, only add the code that’s inside the open/closed bracketed tags – we’re working on getting code highlighting in the forum replies…

    in reply to: Few Questions #12029
    Jonah
    Participant

    Hi Karen,

    I can help you with #4 and #5. For #4 you’ll need to make a simple stylesheet addition. In events.css or your themes own stylesheet, add this CSS code:

    [css]
    #tribe-events-content .ical {
    display: none;
    }
    [/css]

    For #5 add the following CSS code:

    [css]
    .single .ical, .events-single #googlemaps {
    display: none;
    }
    [/css]

    That should do it, let me know if you need anything else with this.

    Regards,
    Jonah

    in reply to: How to add public holiday into the calendar? #11957
    Jonah
    Participant

    Hi Terrence,

    My first thought would be to add it via jQuery but I don’t know if that’s the best approach. Let me check with some of the other team and get back to you.

    Regards,
    Jonah

    Jonah
    Participant

    Hi Tim/Louis,

    I’ve been able to duplicate this issue in my environment as well. It appears to be a problem when the permalinks are set to the default option. If you set permalinks to any of the other options it seems to fix it. Have you guys tried this? You’ll have nicer links anyway 🙂

    But I will go ahead and file this as a bug and we’ll get it fixed ASAP. Thanks for reporting it.

    Regards,
    Jonah

    in reply to: Got A Pre-Sale Question? Check the FAQ First #11955
    Jonah
    Participant

    Hi Hoosier, you should just need to change the width of the div containing the calendar. Right now it’s set to 80% and if I change this to 79%, the calendar lines up where it should be. I’m not sure where this is in your theme files, you’ll need to find it and adjust accordingly. Here is a screenshot of the div: http://cl.ly/2y4104023Q1U2p1K1G0y

    Regards,
    Jonah

    in reply to: Events List Advanced Widget – Multiple Categories. #11954
    Jonah
    Participant

    Hi there,

    This is actually fairly involved and will require a good amount of re-working of the widget. I’ll add it to the feature requests because it’s definitely something we should do but it’s too much hacking to post here.

    What I would suggest is you use sub-categories for one category that you select for the widget. That way you can still categorize but then select the one category and still pull in events from all the sub-categories.

    Regards,
    Jonah

Viewing 15 posts - 3,916 through 3,930 (of 4,001 total)