Hi
I need to change the Nochex template so that it links to www.secure.nochex.com rather than www.nochex.com
I have seen these threads here:
http://community.actinic.com/showthr...ghlight=nochex
http://community.actinic.com/showthr...ghlight=nochex
so I assume its possible?
I've looked at the Act_OCCNOCHEXTemplate.html file, but the example code given by nochex is:
So, assuming I replace OCC_VALUES with the code above, how would I get the values of payment amount and description etc?
I've searched for OCC_VALUES in the advanced guide but not found anything.
I assume I can change things like "{Your Payment Amount}" for some NETQUOTEVAR: value, but which ones? The advanced guide mentions lots of INVOICEXXXXX but nothing that looks like a total etc.
Thanks for any help given
Pete
I need to change the Nochex template so that it links to www.secure.nochex.com rather than www.nochex.com
I have seen these threads here:
http://community.actinic.com/showthr...ghlight=nochex
http://community.actinic.com/showthr...ghlight=nochex
so I assume its possible?
I've looked at the Act_OCCNOCHEXTemplate.html file, but the example code given by nochex is:
Code:
<form method="POST" action="https://secure.nochex.com/"> <input type="hidden" name="merchant_id" value="{Your Merchant ID}"> <input type="hidden" name="amount" value="{Your Payment Amount}"> <input type="hidden" name="description" value="{Your Order Description}"> <input type="hidden" name="order_id" value="{Your Order ID}"> <input type="submit" value="Pay by Nochex"> </form>
I've searched for OCC_VALUES in the advanced guide but not found anything.
I assume I can change things like "{Your Payment Amount}" for some NETQUOTEVAR: value, but which ones? The advanced guide mentions lots of INVOICEXXXXX but nothing that looks like a total etc.
Thanks for any help given
Pete
Comment