
Originally Posted by
littlegdesigns2004
I copied and pasted your code into my store, and I found one error that messed up the whole page.
You have:
2. During the checkout process, on the same page that you select a payment method
there will be a box to enter a ' . TEXT_GV_REDEEM . '. Enter the ' . TEXT_GV_REDEEM . ' here, and
click the Redeem button. The code will be
validated and the amount added to your ' . TEXT_GV_NAME . ' Account. You can then use the amount to purchase any item from our store')<br /><br />;
break;
You need to move the <br /><br /> inside the parentheses, so it reads:
2. During the checkout process, on the same page that you select a payment method
there will be a box to enter a ' . TEXT_GV_REDEEM . '. Enter the ' . TEXT_GV_REDEEM . ' here, and
click the Redeem button. The code will be
validated and the amount added to your ' . TEXT_GV_NAME . ' Account. You can then use the amount to purchase any item from our store<br /><br />');
break;