Quote:
Originally Posted by daveb1
My Product Options show up as one long line, but the pics earlier in the thread show each option on separate lines. The line of code in question seems to be
Code:
<td width="42%" height="30" valign="top" colspan="2"><font face="Tahoma">{$products[prod_num].product_options|replace:"/n":"
/n"}</font></td>
which looks like it should produce a line break, but it definitely doesn't.
Anyone know how to make the line breaks appear? It's on the 3.5.3 cart.
|
Ok, this should be easy. In your code, every time you use "/n" it should be "\n". Try changing them to \n as follows:
Code:
<td width="42%" height="30" valign="top" colspan="2"><font face="Tahoma">{$products[prod_num].product_options|replace:"\n":"
\n"}</font></td>
That should do it.