Gift Certificate Redemption

General ShopSite user discussion
Post Reply
midfin
Posts: 31
Joined: Fri Sep 05, 2008 11:58 am

Gift Certificate Redemption

Post by midfin »

I have gift certificates configured but there doesn't seem to be a field in the shopping cart where someone can redeem them.

Is there a tag I am missing?

http://65.18.171.175/index.html
loren_d_c
Posts: 2572
Joined: Fri Aug 04, 2006 12:02 pm
Location: Anywhere
Contact:

Post by loren_d_c »

Do you have a [-- IF SC_GiftCert --] section in the DEFINE ShoppingCart portion of your custom shopping cart template? If not, you should add one. Here is what it looks like in the sc_default shopping cart template:

Code: Select all

[-- IF SC_GiftCert --]
  <tr>
    <td align="center">
           [-- STORE.EnterGiftCert --]
           [-- IF SC_GiftCert_Button --]
             [-- STORE.GiftCert_Redeem --] 
           [-- ELSE --]
             [-- STORE.GiftCert_Recalculate --] 
           [-- END_IF --]
      <br><table border="0" cellpadding="3" cellspacing="0">
        <tr>
          <td colspan="2">[-- SC_GiftCert --]</td>
          <td align="left">
            [-- IF SC_GiftCert_Button --]
              <font size="2">[-- BUTTON ApplyGiftCert --]</font>
            [-- END_IF --]
          </td>
        </tr>
      </table>
    </td>
  </tr>
  [-- END_IF --]
-Loren
Post Reply