I showed the discount codes on the orders
by changing the line 370 in /includes/modules/order_total/ot_discount.php
from
Code: Select all
$this->output[] = ['title' => (($shipping_discount == 'true')? TEXT_SHIPPING_DISCOUNT : TEXT_DISCOUNT) . (strpos($check['discount_values'], '%') ? ' ' . $check['discount_values'] . ' ' : '') . (!empty($order_info) ? ' (' . $_SESSION['sess_discount_code'] . ')' : '') . ':',Code: Select all
$this->output[] = ['title' => (($shipping_discount == 'true')? TEXT_SHIPPING_DISCOUNT : TEXT_DISCOUNT) . ' ('. $check['discount_codes'] .')'. (strpos($check['discount_values'], '%') ? ' ' . ' '. $check['discount_values'] .' ' : '') . (!empty($order_info) ? ' (' . $_SESSION['sess_discount_code'] . ')' : '') . ':',
Omar