Jonah

Forum Replies Created

Viewing 15 posts - 3,646 through 3,660 (of 4,001 total)
  • Author
    Posts
  • in reply to: Mini calendar #14678
    Jonah
    Participant

    Glad you figured it out!

    in reply to: Page title doesn't display on Events list or calendar view #14674
    Jonah
    Participant

    @Schmidtysays: you’ll need to filter or hook into the php function that your theme or Platinum SEO is using to get the page titles and modify the page titles conditionally for the calendar and list view pages. For example, in the Genesis theme framework you can use the following code to modify the page title hook output by Genesis and conditionally set the page titles on the grid and list view:


    add_action('genesis_post_title','custom_do_post_title');
    function custom_do_post_title() {

    $title = get_the_title();

    if ( strlen( $title ) == 0 )
    return;

    if ( tribe_is_month() ) { //set title on grid view
    $title = 'Events Calendar';
    } else if ( tribe_is_event() && !tribe_is_day() && !is_single() ) { //set title on list view
    $title = 'Events List';
    } else if ( is_singular() ) {
    $title = sprintf( '%s', apply_filters( 'genesis_post_title_text', $title ) );
    } else {
    $title = sprintf( '%s', get_permalink(), the_title_attribute('echo=0'), apply_filters( 'genesis_post_title_text', $title ) );
    }

    echo apply_filters('genesis_post_title_output', $title) . "\n";

    }

    By the way, In 2.1, we’re ditching the old display system and instead going back to using actual pages for grid and list view so things like this will become much easier.

    I hope this helps,
    Jonah

    in reply to: Add custom field to meta list on right in list view #14673
    Jonah
    Participant

    Hi Lynne, you would want to override /wp-content/plugins/the-events-calendar/views/list.php – put a duplicate copy of that in an ‘events’ folder in your theme and customize away!

    in reply to: Mini calendar #14672
    Jonah
    Participant

    Hey Dale-Anthony, using tribe_calendar_mini_grid() works for me in a page template. You can’t have two instances of it on the same page though, so if you have the calendar widget displayed on the same page there will be a conflict and one of them won’t display anything. Not sure why it’s not working for you otherwise. Is there any code in the source (i.e. its there but for some reason not actually diaplaying)?

    in reply to: Single event template – remove sidebar #14630
    Jonah
    Participant

    Nope, that’s solution that works for now Angelo. Nothing dodgy about it.

    in reply to: Single event template – remove sidebar #14628
    Jonah
    Participant

    Ughhh, ok html ‘code’ tags with html style arrows on either side of the tag.

    in reply to: Single event template – remove sidebar #14627
    Jonah
    Participant

    That was meant to read ‘' tags, without the spaces of course...

    in reply to: Single event template – remove sidebar #14626
    Jonah
    Participant

    Glad you worked it out David, if you need to post code in the comments, try either wrapping your code in tags or just use http://pastebin.com/

    Thanks,
    Jonah

    in reply to: title of calendar is first event entry? #14625
    Jonah
    Participant

    Hey Josh,

    No problem, hope we can get this figured out. If you’re using the Default Page Template for the events setting, you should be able to go into your page.php template and modify where the_title() appears there. If it’s not in page.php, take a look in header.php because that’s probably where it is. You’ll want to use conditional code to affect what title is displayed on the events pages. Something like this:


    if ( tribe_is_month() ) { //set title on grid view

    } else if ( tribe_is_event() && !tribe_is_day() && !is_single() ) { //set title on list view

    } else if ( is_singular() ) {

    } else {

    }

    I hope that helps!

    in reply to: iCal import not working in 2.0.3 #14624
    Jonah
    Participant

    Hi John,

    I can’t seem to duplicate this using the same event information. Can you try disabling all other plugins to see if it’s a plugin conflict? That and maybe try switching to the Twenty Eleven theme? Also, maybe try updating Genesis to 1.8?

    Please try these things and if none of this works I’ll need to have someone else take a look.

    Thanks,
    Jonah

    Jonah
    Participant

    Great, let us know if you need anything else with this 🙂

    in reply to: title of calendar is first event entry? #14607
    Jonah
    Participant

    Hi Josh, so you have the “Default Events Template” selected?

    Jonah
    Participant

    Ahhh that’s too bad. Keep an eye out for an update fixing this!

    in reply to: List of categories on gridview #14605
    Jonah
    Participant

    Hi Diego,

    Wrapped in gridview.php doesn’t make sense. Have you copied the code above http://pastebin.com/GZLs1J02 ? Do you have an example I can look at?

    in reply to: Event List Widget #14604
    Jonah
    Participant

    Hey hc2ca, you’re welcome and your assumption is correct!

Viewing 15 posts - 3,646 through 3,660 (of 4,001 total)