We are looking to add trusted shops into out website and i am having a litte difficulty in finding out what i need to enter in the code below for it to work in as far as how to pass the data to it.
part of the form looks like this.
The whole form looks like this;
The Input for email is the customers email address. and the amount is the total of the order including vat and delivery.
Has anyone else tried implementing this or got any pointers for someone very new to this?
As always thanks in advance
part of the form looks like this.
HTML Code:
<input name="_charset_" type="hidden" value="ISO-8859-1"> REQUIRED <input name="shop_id" type="hidden" value="OUR_SHOP_ID"> REQUIRED <input name="email" type="hidden" value="{value email}"> REQUIRED <input name="amount" type="hidden" value="{value amount}"> REQUIRED <input name="curr" type="hidden" value="GBP"> REQUIRED
HTML Code:
<table width=400 border="0" cellspacing="0" cellpadding="4"> <tr> <td width="90"> <form name="formSiegel" method="post" action= "https://www.trustedshops.co.uk/shop/certificate.php" target="_blank"> <input type="image" border="0" src="{path/to/imagefile/seal.png}" title= "{Title_Trusted_Shops_Seal}"> <input name="shop_id" type="hidden" value="{value shop_id}"> </form> </td> <td align="justify"> <form id="formTShops" name="formTShops" method="post" action="https://www.trustedshops.com/shop/protection.php" target="_blank"> <input name="_charset_" type="hidden" value=""> <input name="shop_id" type="hidden" value="{value shop_id}"> <input name="email" type="hidden" value="{value email}"> <input name="amount" type="hidden" value="{value amount}"> <input name="curr" type="hidden" value="{value curr}"> <input name="paymentType" type="hidden" value="{value paymentType}"> <input name="kdnr" type="hidden" value="{value kdnr}"> <input name="ordernr" type="hidden" value="{value ordernr}"> {Text_Registration_For_Trusted_Shops_Buyer Protection} <br><br> <input type="submit" id="btnProtect" name="btnProtect" value="{Button_Text_Trusted_Shops_Buyer_Protection}" </form> </td> </tr> </table>
Has anyone else tried implementing this or got any pointers for someone very new to this?
As always thanks in advance