Announcement

Collapse
No announcement yet.

Mandatory field not showing as such

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Mandatory field not showing as such

    HI - hopefully this is a quick question! Client wants the credit card start date to be mandatory - it is set up as such, but on the screen it doesn't appear in red like the other mandatory fields. Is this a bug or am I missing something? (Quite likely!) Don't want to mess about with the orderform templates unless I know what I'm at.

    #2
    Hi,

    Because our pages are static and not dynamic that field is not set to show as required because you could have one card type where it is required and others where it is not so. If you want to show it as required then:

    - go to 'Advanced | Template Manager'
    - on the 'Ordering' tab (click 'Change View' if you do not see the tabs), click the 'Order Phase 2' button to open the 'Act_Order02.html' template
    - search for:

    NETQUOTEVAR:PAYMENTPROMPT003

    - you should see:

    Code:
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:PAYMENTPROMPT003</td>
    - change this to:

    Code:
    <td class="actrequired" bgcolor="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:PAYMENTPROMPT003</td>
    - save and close the file
    - update the site.
    ********************
    Tracey
    SellerDeck

    Comment

    Working...
    X