• Resolved maneki

    (@maneki)


    I’m having problems translating the widget. I tried to use the sr_RS lagguage file. I coried the .po and .mo files to mysite/wp-content/languages folder, and I left a copy in the default folder, but still I get the english translation on the front page. I tried translating the files using PoEdit, and that uploading them but still I got no result.
    In my wp-confing file the language is set as:
    define(‘WPLANG’, ‘hr’); so I have to change the default hr_HR of most plugins to just hr for the changes to take effect, so I tried seting the WPLANG to hr_HR but than I lost all of translations, so I returned it to default just hr.

    What am I doing wrong?

    https://wordpress.org/plugins/woocommerce-my-account-widget/

Viewing 2 replies - 1 through 2 (of 2 total)
  • I am putting together a multi-language site with WPML and WooCommerce.
    http://usa2sweden.se/site/
    http://usa2sweden.se/site/?lang=en

    The my account widget would not change languages even I selected from the country drop down. This is how I finally solved it:

    I edited wp-config.php:

    if (isset($_GET[“lang”])) {
    $lang = $_GET[“lang”] . “_” . strtoupper($_GET[“lang”]);
    define(‘WPLANG’, $lang);
    } else {
    define(‘WPLANG’, ‘sv_SE’);
    }

    If you’re using the “Different languages in directories” option, you can parse the $_SERVER[“REQUEST_URI”] to extract the language slug.

    Plugin Author WP Fortune

    (@bpluijms)

    Hello,

    We’re still having some problems with WPML and we’re looking for a solution for this.

    We hope to have a working solution in a couple of days.

    Best regards,
    Bart

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Translation problem’ is closed to new replies.