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

    (@jobinjose01)

    Hello janpencik,

    Can you just explain the issue in more details ?

    I have the same problem. Characters such as ő, ö, ü, ű, ó, á, é, and others are missing during share. Any suggestions? Thanks in advance.

    Plugin Author jobinjose01

    (@jobinjose01)

    Hello Bucee,

    The characters removing automatically is due to one JS function on wwm_custom.js the function name is WWWM_FilterData In some case the FB will prevent some special characters that’s why I filter out every special chars,

    function WWWM_FilterData(e) {
        if (jQuery.trim(e) != "") return e.replace(/[^\w\s]/gi, "");
        else return ""
    }

    to

    function WWWM_FilterData(e) {
        if (jQuery.trim(e) != "") return e;
        else return ""
    }

    for avoid filtration.
    Hope it helps.

    Big thanks!! It works perfectly. Great support and plugin. Highly recommended!

    Plugin Author jobinjose01

    (@jobinjose01)

    Plugin updated with French character support too.
    So the support thread is closing.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Missing characters with Czech diacritics’ is closed to new replies.