However, at times some of our custo be quite common.
Customer: Currently the plugin displays the shipping rates and the delivery format as shown below,
FedEx Ground: $33.55
Est delivery: February 3, 2018
FedEx Ground: $33.55
Est delivery: February 3, 2018 (1 Day in transit)
or
FedEx Ground: $33.55
Est delivery: February 3, 2018 (1)
or
FedEx Ground: $33.55
1 Day in transit
and then click on Update File. If you look carefully at the line number 6, then you would find the following line of code:
$postfix_text = ‘ ( 1 Day in Transit )’; //Modify the text as per your requirement
In the above line of code, you can define your own message. So, if you want to replace it with the content inside the brackets ( ). This way the line of code would look something like the following:
$postfix_text = ‘ ( One day in Transit )’; //Modify the text as per your requirement
Doing this will display the page as shown below in the image: