• Hi, i’ve translated mostly of my website strings in italian, but some others are hidden. I can’t find them. What can i do? Maybe i have to contact the theme support. What do you think?

    Many thanks in advance

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Look into WordPress core translations, or force them with following snippet:

    // QUICKLY TRANSLATE ANY STRINGS THAT DON’T GET TRANSLATED
    add_filter(‘gettext’, ‘translate_text’);
    add_filter(‘ngettext’, ‘translate_text’);
    function translate_text($translated) {
    $translated = str_ireplace(‘Start shopping’, ‘Inizia’, $translated);
    $translated = str_ireplace(‘Renew’, ‘rinnova’, $translated);
    return $translated;
    }

    But it’s not the proper method. Loco’s author doesn’t give any feedback on such matters.

Viewing 1 replies (of 1 total)
  • The topic ‘Strings not appear’ is closed to new replies.