Laura

Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • in reply to: Calendar Issues #33151
    Laura
    Member

    Hi. I’m having the same issue. When I use the default theme page for my events calendar template, the calendar appears on a page with a sidebar, which I don’t want, but it DOES advance through the months quite easily and quickly. However, when I choose the Events Calendar Default Template, I get the full-width calendar, which I do want, but the months won’t advance. When I click on the next month link, a wheel just spins and spins. Any ideas?
    http://www.animalsvoice.com/events/

    in reply to: Events homepage showing individual event titles #29101
    Laura
    Member

    If you can figure it out, Jonah, I never will. 🙁
    It seems it’s overlaying the Events Default Template over a Page Template, showing the title of an event, but also showing the design elements of dividers horizontally across the top where they appear on posts and pages beneath their titles and the vertical rule that delineates the right sidebar. Is there a way to figure out how/why the Events Default Template might be doing that? Thank you!

    in reply to: Events homepage showing individual event titles #29015
    Laura
    Member

    Hi again, Jonah. You are the best. Never had such prompt support! I’ve done as you requested and embedded the title code in my functions.php page and it worked this time, meaning that it didn’t blow my site offline like the first time, so thank you! However, it’s not affecting the title issue on the Events calendar home page; it still shows the title of the first event. I think I might not be understanding what you mean about ‘modify as necessary.’ Could you possibly explain this? Thank you so much. -Laura
    http://markylennon.server289.com

    in reply to: Events homepage showing individual event titles #28931
    Laura
    Member

    BTW, this is the code I added to the functions.php file and got the one line of error for a web site. 🙂

    does it matter where in the file it goes?

    it’s also possible i copied the code as it appeared on the page and it may have selected the line #s. i can’t remember which i did, but i’m afraid to risk it again. Shall I retry and send you the error code too?

    add_filter(‘tribe_get_events_title’, ‘my_get_events_title’);
    function my_get_events_title($title) {
    if( tribe_is_month() && !is_tax() ) { // The Main Calendar Page
    return $title;
    } elseif( tribe_is_month() && is_tax() ) { // Calendar Category Pages
    return $title;
    } elseif( tribe_is_event() && !tribe_is_day() && !is_single() ) { // The Main Events List
    return ‘Events List’;
    } elseif( tribe_is_event() && is_single() ) { // Single Events
    return $title;
    } elseif( tribe_is_day() ) { // Single Event Days
    return ‘Events for – ‘ . tribe_get_start_date(false, false, ‘F, Y’);
    } elseif( tribe_is_venue() ) { // Single Venues
    return $title;
    } else {
    return $title;
    }
    }

    in reply to: Events homepage showing individual event titles #28929
    Laura
    Member

    Hi Jonah. Thank you so much for your prompt reply! Here is the URL to the snippi code of my functions.php: http://snippi.com/s/og54p2j

    in reply to: Events homepage showing individual event titles #28884
    Laura
    Member

    And, lastly, the events home page has kicked off the copyright text at the bottom of the page. I’m not able to add a slider or a footer to the page, either. 🙁

    in reply to: Events homepage showing individual event titles #28883
    Laura
    Member

    Oh, I also meant to add that, although I’ve selected the default events page template in the settings for the calendar, the page it shows contains the light grey horizontal and vertical rules that are used to delineate the page’s title and sidebar areas. You can see them (lightly visible) on the events calendar home page. So if the default events page template is selected, perhaps knowing that it’s pulling elements from the page template might help to solve the problem?

    in reply to: Events homepage showing individual event titles #28882
    Laura
    Member

    Hi Jonah. I copied the code as suggested for the default events page in my functions.php file and it blew my site offline with some line of error code — and nothing more! I’m afraid to risk it again (even in order to get the line of code for you), but perhaps you could look at my site and tell me what you think I need to do to keep the individual event title from appearing on the events home page. I know it must be the template because I use Events Calendar Pro on another site and it works perfectly. Here’s the one having trouble:

    http://markylennon.server289.com/events/

    Thank you!

Viewing 8 posts - 1 through 8 (of 8 total)