Announcement

Collapse
No announcement yet.

Customising Check Out

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

    Customising Check Out

    I am trying to solve two problems and would appreciate some pointers.

    In the check out on the page where the user definable General Info prompts appear I want to be able to :

    a) Change one of these prompts to a dropdown list of values
    b) Have a link to a pop up window with more info.

    Thanks in advance.

    #2
    a) If you open up the Act_Order_02.html file in notepad, search for

    <input type="TEXT" name="GENERALHOWFOUND" size="40" maxlength="255" value="NETQUOTEVAR:GENERALHOWFOUND">

    Replace that with

    <SELECT NAME="GENERALHOWFOUND">
    <OPTION SELECTED>Please select:</OPTION>
    <OPTION VALUE="Search Engine">Search Engine</OPTION>
    <OPTION VALUE="Magazine">Magazine</OPTION>
    <OPTION VALUE="Other">Other</OPTION>
    </SELECT>

    Obviously, replace the options here with ones you want displayed.

    b) To make a link open in a new window, just add a target attribute to the link:

    <a href="xxxx.html" target="_blank">blah blah blah</a>
    www.gbradley.co.uk
    Web Development, Actinic Patches, Scripts & more

    Comment


      #3
      Wow that was a quick response.

      Will give it a go.

      Comment

      Working...
      X