Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1254432
    Johanschack
    Participant

    Hi,

    I’ve made a simple Woocommerce website, and ive very please, except for 1 thing.

    I need to change the wording in the header, that tells me how many items i have in my basket. it says either “1 Item” or “2 Items”. Since the website is in another language, I would like it to say “1 Vare” and “2 Varer”.

    How can i accomplish this?

    Thanks in advance.

    Best regards,
    Johan

    #1254467
    Thai
    Moderator

    Hi Johan,

    Please add the following code under functions.php file locates in your child theme:

    add_filter('ngettext', 'translate_text' );
    function translate_text($translated) { 
      $translated = str_ireplace('Items', 'Varer', $translated);
      $translated = str_ireplace('Item', 'Vare', $translated);
      return $translated; 
    }

    Hope it helps 🙂

    #1254473
    Johanschack
    Participant

    It did, thanks

    #1254517
    Thai
    Moderator

    You’re most welcome 🙂

  • <script> jQuery(function($){ $("#no-reply-1254432 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>