I would like that during checkout on the page "Step 2 of 3 - Payment Information" there were no text in () after shipping method name.
For example there is now: Store Pickup (Walk In):
I would like to get: Store Pickup:
Can anybody help me?
I would like that during checkout on the page "Step 2 of 3 - Payment Information" there were no text in () after shipping method name.
For example there is now: Store Pickup (Walk In):
I would like to get: Store Pickup:
Can anybody help me?
https://www.zen-cart.com/tutorials/index.php?article=38
https://www.zen-cart.com/tutorials/index.php?article=39
use the DTK to find the text you want to change, then edit that file.
I know how to do this already.
Go to \includes\modules\order_total\ot_shipping.php and change line
$this->output[] = array('title' => $order->info['shipping_method'] . ':',
into
$this->output[] = array('title' => $this->title . ':',
This will make zen cart to show Shipping: instead of Store Pickup (Walk In): or other shipping modules names.
So you want to not show your customers which shipping method they have selected?
Yes. It looks much better then long shipping method description in Your Total area.
Brilliant solution. I used description instead of title.
@gjh42 : People can see their shipping method, which they just selected on the previous page, again on the confirmation page.
Zen cart installation / maintenance / customisation / hosting
Supported Modules: Dutch language pack, Multi site, Dynamic Price Updater and more.
True. I still don't think "Store Pickup:" is more cumbersome than "Shipping:", but to each his own. Some methods may have necessarily long names.