Make an override copy of includes/languages/english/discount_coupon.php and replace these two lines
Code:
define('TEXT_COUPON_HELP_FIXED', '');
define('TEXT_COUPON_HELP_MINORDER', '');
with
Code:
define('TEXT_COUPON_HELP_FIXED', '%s off');
define('TEXT_COUPON_HELP_MINORDER', ' for orders over %s');
Then edit your coupon and leave the description completely blank. The displayed currency for the minimim order value will then automatically change according to the selection the customer has made, and the currency exchange value you have set for your currencies.
You will find that the percentage off will be shown with 2 decimal places, ie 10.00% off for orders over $100
If you want to change that so the percentage is shown with no decimal places, you need to replace this line in includes/modules/pages/discount_coupon/header_php.php
Code:
$text_coupon_help .= sprintf(TEXT_COUPON_HELP_FIXED, number_format($coupon->fields['coupon_amount'],2). '%');
with
Code:
$text_coupon_help .= sprintf(TEXT_COUPON_HELP_FIXED, number_format($coupon->fields['coupon_amount'],0). '%');
Bookmarks