Opencart-How can I display the flat rate in Delivery details section in Checkout -


in opencart added shipping flat rate 150 via admin panel. in checkout delivery details section wish show flat rate.

how can display flat rate in delivery details section in checkout? want display in catalog/view/theme/default/template/checkout/shipping_addres.tpl.

my opencart version 2.0.3.1.

an alternative solution:

$_session contain set of values me find solution.

var_dump($_session); //you can see session values 

echo $_session['shipping_methods']['flat']['quote']['flat']['text']; gives currency symbol , flat rate.

result is: inr 150 or eur 2.01 or usd 2.25 (depends currency)

any other answer(if any) welcome..


Comments

Popular posts from this blog

How to check data type in C++? -

javascript - Is getTimezoneOffset() stable during daylight saving transition? -

formula - R: how to pass in a reference to the variable in glm or lm? -