wordpress - How do I integrate Woocommerce payment method to my banks checkout page? -
i new woocommerce , need help...my bank send me payment checkout code , wish integrate woocommerce checkout page...
the attached checkout page requires payment parameters woocommerce such paymenttotal, referenceno, currency, purchasedescription, transactiontype..etc
how can integrate woocommerce checkout banks sample checkout page please?
<?php session_start(); ?> <!doctype html public "-//w3c//dtd xhtml 1.0 strict//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>mastercard migs vas integration demo - checkout page</title> </head> <body> <h1>example migs vas server hosted merchant integration - checkout page</h1> <form action="postrequest.php" method="post"> <div> <p>purchase item</p> <table> <tr> <td><label for="paymentamount">sale base units</label></td> <td><input type="text" id="paymentamount" name="paymentamount" value=""></td> </tr> <tr> <td><label for="currency">currency</label></td> <td><input type="text" id="currency" name="currency" value="aud"/></td> </tr> <tr> <td><label for="purchasedescription">description</label></td> <td><input type="text" id="purchasedescription" name="purchasedescription" value="shiny blue widget"/></td> </tr> <tr> <td><label for="transactiontype">transaction type</label></td> <td><select id="transactiontype" name="transactiontype"> <option>authorise</option> <option selected>purchase</option> </select></td> </tr> <tr> <td><label for="referencenumber">reference number</label></td> <td><input type="text" id="referencenumber" name="referencenumber" value=""/></td> </tr> <tr> <td><label for="messagereference">message reference</label></td> <td><input type="text" id="messagereference" name="messagereference" value=""/></td> </tr> <tr> <td><input type="submit" id="checkout" name="checkout" value="check out"/></td> </tr> </table> </div> </form> </body> </html>
Comments
Post a Comment