Hi,
It works. 
Here is the code:
Code:
$this->products_ordered .= $this->products[$i]['qty'] . ' x ' . $this->products[$i]['name'] . ($this->products[$i]['model'] != '' ? ' (' . $this->products[$i]['model'] . ') ' : '') . ' @ ' .
$currencies->display_price($this->products[$i]['final_price'], $this->products[$i]['tax'], 1) . ' = ' . $currencies->display_price($this->products[$i]['final_price'], $this->products[$i]['tax'], $this->products[$i]['qty']) .
Here is the display:
3 x Cover @ $59.95 = $179.85
If I wanted to add "ea." after the $59.95, would it be:
Code:
$this->products_ordered .= $this->products[$i]['qty'] . ' x ' . $this->products[$i]['name'] . ($this->products[$i]['model'] != '' ? ' (' . $this->products[$i]['model'] . ') ' : '') . ' @ ' .
$currencies->display_price($this->products[$i]['final_price'], $this->products[$i]['tax'], 1) . 'ea.' ' = ' . $currencies->display_price($this->products[$i]['final_price'], $this->products[$i]['tax'], $this->products[$i]['qty']) .
Thanks!!!