Announcement

Collapse
No announcement yet.

Secure Trading - address details not passed from actinic

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

    Secure Trading - address details not passed from actinic

    I've seen this mentioned on the forum a few times but I can't find any answers...

    I've just setup secure trading with my site, but it is only passing some of the fields from the checkout to the credit card payment screen - Reference, amount, name, postcode, email.

    But it is not passing these - any of the address fields other than postcode, phone number, country.

    Does anyone know the solution?
    John

    #2
    In answer to my own question, for the benefit of anyone else with the same problem, here is the solution -

    in form.html change the following lines -
    Code:
    <td><input type="text" value="$address" onclick="resetFieldValue(this)" name="address"/></td>
    <td><input type="text" value="$town" name="town"/></td>
    <td><input type="text" value="$county" name="county"/></td>
    <td><input type="text" value="$telephone" name="telephone"/></td>
    to -
    Code:
    <td><input type="text" value="$address1" onclick="resetFieldValue(this)" name="address"/></td>
    <td><input type="text" value="$address3" name="town"/></td>
    <td><input type="text" value="$address4" name="county"/></td>
    <td><input type="text" value="$phone" name="telephone"/></td>
    and optionally insert this line -
    Code:
    <tr>
    <td>Address (optional):</td>
    <td><input type="text" value="$address2" onclick="resetFieldValue(this)" name="address2"/></td>
    </tr>
    John

    Comment


      #3
      John,

      Thanks for posting back.

      Kind regards,
      Bruce King
      SellerDeck

      Comment


        #4
        Another useful setup titbit -

        By default ST Doesn't send customer emails when a merchant uses Actinic as the website can send the customer an email and it could get confusing for the customer.

        If you want to us to send the customer an email ensure you have the following line in the form.html as a hidden field;

        <INPUT TYPE="hidden" NAME="customeremail" VALUE="1">

        by making it a number 1 activates the customer emails, so as long as you have a customeremail.txt uploaded an email should be sent.
        John

        Comment

        Working...
        X