Change "Shipping" text to "Delivery" everywhere I appears in woocommerce

I only offer local delivery in my woocommerce store.but there are several pages that refer my delivery method as shippin

I only offer local delivery in my woocommerce store.

but there are several pages that refer my delivery method as shipping.

Ship to, shipping type, shipping address, free shipping, shipping date, shipping time.

is it possible to change or override every instance the word "Shipping" appears and change it to "Delivery" or "Deliver"

I only offer local delivery in my woocommerce store.

but there are several pages that refer my delivery method as shipping.

Ship to, shipping type, shipping address, free shipping, shipping date, shipping time.

is it possible to change or override every instance the word "Shipping" appears and change it to "Delivery" or "Deliver"

Share Improve this question asked Jul 1, 2019 at 23:43 oscaroscar 231 silver badge6 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

You can use custom functions.php file inside your theme folder. If a file named functions.php already exist, then you can use the following formulae. You can also create a functions.php file by yourself in the theme root folder if it does not exist.

<?php
/*
Functions.php file
Description: Site specific codes and functions
*/

function fix_woocommerce_strings( $translated, $text, $domain ) {

    // STRING 1
    $translated = str_ireplace( 'Shipping', 'Delivery', $translated );


    return $translated;
    }


    add_filter( 'gettext', 'fix_woocommerce_strings', 999, 3 );

//EOF
?>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745352350a4623910.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信