Да, вопрос не по шаблону, за помощь автору отдельная благодарность, наверняка кому-то еще пригодится решение.
Править нужно 26-ю и 47-ю строки:
$symbol_right = $this->currencies[$currency]['symbol_right'];
$string .= number_format($amount, (int)$decimal_place, $this->language->get('decimal_point'), $this->language->get('thousand_point'));
Должно быть:
$symbol_right = '</span>'.$this->currencies[$currency]['symbol_right'];
$string .= number_format($amount, (int)$decimal_place, '<span class="decimal_price">'.$this->language->get('decimal_point'), $this->language->get('thousand_point'));
Под '<span class="deciaml_price">' вероятнее всего автор имел ввиду '<span class="decimal_price">'
Не то, что искал, но тоже спасибо.