• Laurent R

    (@laurent-r)


    Hi,

    I’m using the Karma template with events calendar pro.

    For some reason the titles of the calendar and list pages appear double, while it’s ok for the single event page.

    This is what I get:
    “Calendar of EventsCalendar of Events”
    “Upcoming EventsUpcoming Events”

    I looked in both php files, but the problem doesn’t seem to come from there.
    Any idea where it comes from?
    Thanks,
    Laurent.

    http://wordpress.org/extend/plugins/the-events-calendar/

Viewing 7 replies - 1 through 7 (of 7 total)
  • Rob La Gatta

    (@roblagatta)

    Hey Laurent. Thanks for the note here. I assume you’ve already updated to 2.0.5 to see whether the issue persists? If so, then it’s an issue we’re hoping our templating changes in 2.1 will address. We have had this conflict with a couple plugins (currently just Karma & Thesis are the known ones) and are looking into what caused it.

    In the interim, adding this to your theme’s functions.php file might work (no guarantees):

    add_filter('tribe_get_events_title', 'my_get_events_title');
    function my_get_events_title($title){
    if( is_tax() ){
    return $title;
    }else{
    return 'My Title';
    }
    }

    “My Title” should just be swapped to whatever you want it called. This will require the 2.0.5 code to function.

    Let me know if that works.

    Thread Starter Laurent R

    (@laurent-r)

    Hi Rob,

    Thanks for your reply.
    I use indeed version 2.0.5.
    I also tried your code, but sadly it doesn’t help.
    I still get twice the name I use to replace ‘My Title’…

    Thanks for your support,
    Laurent.

    Rob La Gatta

    (@roblagatta)

    Got it. Thanks, Laurent – sorry I couldn’t offer up more here. I’m hoping that the 2.0.6 code, which we’re working on now and aim to have out over the next few weeks, should resolve this. Would you be willing to wait until then, update to the new code and let me know if so?

    If not, I’ll see if a dev on our end can offer you some guidance.

    Thread Starter Laurent R

    (@laurent-r)

    Thanks for your reply.
    I can wait till next update.

    Regards,
    L.

    Rob La Gatta

    (@roblagatta)

    Ah, excellent. Sorry I couldn’t offer up more in the short-term.

    Hi – i am having the exact same problem (I am also using the Karma theme). Was there ever a fix for this? I have updated to the latest versions of everything. Thanks

    Hi there tobo27. 2.1 is still actually not yet released, so the fix included in that code hasn’t been pushed to the general public. Did you give the code provided for Laurent, above, a go?

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[Plugin: The Events Calendar] Grid view and list titles appear twice’ is closed to new replies.