Viewing 1 replies (of 1 total)
  • Plugin Author jobinjose01

    (@jobinjose01)

    Just customize the JS file according to that,
    there is a function called WWWM_FilterData()

    function WWWM_FilterData(e) {
        if (jQuery.trim(e) != "") return e.replace(/[^\w\sàa??éè?ê???ù?ü???à???éè?ê????ù?ü??]/g, "");
        else return ""
    }

    replace it with

    function WWWM_FilterData(e) {
        if (jQuery.trim(e) != "") return e.replace(/[^\w\s|àa??éè?ê???ù?ü???à???éè?ê????ù?ü??]/g, "");
        else return ""
    }

    So once the title tooks from your page title it will not remove these | char.

    hope it get resolved.

Viewing 1 replies (of 1 total)
  • The topic ‘Change format of the share text’ is closed to new replies.