Advertisement
rijarob

FoxyCart: Add Checkout Dropdown

May 9th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. <div class="fc-form-group ">
  2. <div class="col-sm-8 col-sm-offset-3" data-fc-error-for="referral_source" data-fc-error-class="fc-alert-container--error">
  3. <div class="fc-input-group-container fc-input-group-container--checkbox fc-input-group-container--active">
  4. <label class="fc-input-group-container__title fc-input-group-container__title--forced fc-form-label">
  5. Referred by… (required)
  6. </label>
  7. <div class="fc-form-group">
  8. <p>How did you hear about us?</p>
  9. <select name="referral_source" id="referral_source" class="fc-form-control" aria-required="true" data-fc-required>
  10. <option value="SOURCE_01" {% if referral_source == "SOURCE_01" %}selected{% endif %}>This Website</option>
  11. <option value="SOURCE_02" {% if referral_source == "SOURCE_02" %}selected{% endif %}>Online Ad</option>
  12. <option value="SOURCE_03" {% if referral_source == "SOURCE_03" %}selected{% endif %}>Email</option>
  13. <option value="SOURCE_OTHER" {% if referral_source == "SOURCE_OTHER" %}selected{% endif %}>Other</option>
  14. </select>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement