Help For Coupon field is required.

Discussion in 'Customization & add-ons' started by mr_hima, Oct 28, 2010.

  1. mr_hima

    mr_hima New Member

    Joined:
    Mar 22, 2010
    Messages:
    4
    I Need In Signup Page The Coupon Field is Required
    Like Email If Leave Free Tell Is Required. By Red :confused:
  2. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    In signup.html template change this:
    Code:
    <tr>
        <th><b>#_TPL_SIGNUP_COUPON_CODE#</b><br />
        <div class="small">#_TPL_SIGNUP_COUPON_1#<br />#_TPL_SIGNUP_COUPON_2#</div></th>
        <td><input type="text" name="coupon" id="f_coupon" 
        class="{ldelim} remoteCoupon: 'ajax.php'{rdelim}". 
        value="{$smarty.request.coupon|escape}" size="15" />
        </td>
    </tr>
    
    to
    Code:
    <tr>
        <th><b>#_TPL_SIGNUP_COUPON_CODE#</b><br />
        <div class="small">#_TPL_SIGNUP_COUPON_1#<br />#_TPL_SIGNUP_COUPON_2#</div></th>
        <td><input type="text" name="coupon" id="f_coupon" 
        class="{ldelim} required: true, remoteCoupon: 'ajax.php'{rdelim}". 
        value="{$smarty.request.coupon|escape}" size="15" />
        </td>
    </tr>
    
    
  3. drmartinjr3i3

    drmartinjr3i3 aMember Pro Customer

    Joined:
    Nov 21, 2010
    Messages:
    65
    that code no longer exist and page is now signup.php - so what code do you use now?
  4. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    You should change /amember/templates/signup.html and not signup.php

Share This Page