Jump to content
- Community Forums
You currently have javascript disabled. Several functions may not work. Please re-enable javascript to access full functionality.
19 November 2016 - 07:09 AM
Anyone got any solution? I have same issue, when I change options, quantity discount price not changes.
"Disregard product options when calculating quantity discounts" also checked (enabled).
Assistance is appreciated.
14 November 2016 - 01:38 PM
This worked perfectly. Thank you.
14 November 2016 - 08:32 AM
that works perfect, thank you.
Hi,
Can you exactly specify where to use or replace these codes in product_data.tpl in MV 4.3.6?
14 November 2016 - 08:08 AM
Do you mean the "from" field? In this case you can specify e-mail in the code: 'from' => 'youremail@mail.com', or change theOrder department e-mail address on the Settings -> Company page
Do you mean the "from" field? In this case you can specify e-mail in the code:
'from' => 'youremail@mail.com',
or change theOrder department e-mail address on the Settings -> Company page
That's what I was looking for. Thanks eCom team.
14 November 2016 - 08:07 AM
This is what the code is in the latest version which appears to be the same as 4.3.6: /app/addons/paypal/payments/paypal.php if ($paypal_currency == CART_PRIMARY_CURRENCY) { //Order Total $paypal_shipping = fn_order_shipping_cost($order_info); $paypal_total = fn_format_price($order_info['total'] - $paypal_shipping, $paypal_currency); $paypal_shipping = fn_format_price($paypal_shipping, $paypal_currency); } else { $paypal_shipping = 0; $paypal_total = fn_format_price_by_currency($order_info['total'], CART_PRIMARY_CURRENCY, $paypal_currency); }
This is what the code is in the latest version which appears to be the same as 4.3.6:
/app/addons/paypal/payments/paypal.php
if ($paypal_currency == CART_PRIMARY_CURRENCY) { //Order Total $paypal_shipping = fn_order_shipping_cost($order_info); $paypal_total = fn_format_price($order_info['total'] - $paypal_shipping, $paypal_currency); $paypal_shipping = fn_format_price($paypal_shipping, $paypal_currency); } else { $paypal_shipping = 0; $paypal_total = fn_format_price_by_currency($order_info['total'], CART_PRIMARY_CURRENCY, $paypal_currency); }
Thanks. I have not tried it but earlier once I posted working perfectly as of now.