Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Poco

    (@poco)

    Please provide a link to a page that has your issues or the entire dump from the browser console when loading the page. I can’t help much without more information.

    Thread Starter vmartinffc

    (@vmartinffc)

    https://www.familyfuncalgary.com, https://www.familyfunvancouver.com
    Calgary is the stand alone, Vancouver is one of the networked sites. The other 2 networked sites are family fun Edmonton and Halifax, both experiencing the same issue.

    Plugin Author Poco

    (@poco)

    Ah, the problem is with the change to disable the wiki markup.

    Looking at your console output (F12 on most browser) this error appears

    ko-calendar.js?ver=4.1:269 Uncaught ReferenceError: entryDesc is not defined
    ko-calendar.js?ver=4.1:269 (anonymous function)

    It is due to to line 269 of ko-calendar.js

    bodyDiv.innerHTML = entryDesc;

    Which I assume is due to a bad merge with an older version of the plugin in your revision control OR the instruction in the FAQ about how to disable the wiki markup formatting are now wrong.

    They should now read something like the following. The key is to remove the function call to Wiki.toHtml() and leave everything inside it.

    If you wish to remove this transformation simply replace the following line in ko-calendar.js

    bodyDiv.innerHTML = Wiky.toHtml(entry.description != null ? entry.description : “”);

    With

    bodyDiv.innerHTML = entry.description != null ? entry.description : “”;

    I will update the FAQ (and maybe the next version of the plugin will just make this an option so you don’t have to change it.

    Thread Starter vmartinffc

    (@vmartinffc)

    I’m having a strange problem. When I replace the line in ko-calendar.js in my staging areas, the issue is resolved. When I do the same thing on the live sites, the issue remains, even after i clear the caches

    Plugin Author Poco

    (@poco)

    It works for me on the sites you posted earlier.

    Try viewing them in incognito or privacy mode to ensure that your browser cache isn’t the problem.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Calendar links not opening’ is closed to new replies.