Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1418250

    salilou
    Participant

    I would like to rename “cart total” on checkout page etc.
    Is there a filter to do this?
    Thank you very much!

    #1418668

    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in! To resolve this issue, assuming that the child theme is set up, please add the following code in your child theme’s functions.php file

    // Change Cart Totals
    // =============================================================================
    function change_cart_totals($translated) { 
      $translated = str_ireplace('Cart Totals', 'insert your translation here', $translated);
      return $translated; 
    }
    add_filter('gettext', 'change_cart_totals' );
    // =============================================================================

    We would loved to know if this has work for you. Thank you.

    #1418959

    salilou
    Participant

    Thank you. Meanwhile I solved it by the plugin LOCO Translator. But good to know!

    #1419072

    Darshana
    Moderator

    Glad you were able to figure it out 🙂