Installation Instructions
a - Upload 'poli.php' file to your Zencart folder on server
b - Upload 'includes/languages', 'includes/modules' folders to your 'includes' folder
c - Edit your 'includes\templates\YOUR TEMPLATE\templates\tpl_checkout_success_default.php' file, find '<div id="checkoutSuccessOrderNumber"><?php echo TEXT_YOUR_ORDER_NUMBER . $zv_orders_id; ?></div>'
put these code block under it
<!--poli start-->
<?php
if($_GET['externaltransactionid']){
echo '<b>Payment Receipt:</b>';
echo '<br/><br/>Amounts: ' . $currencies->display_price($_GET['amount'], 0);
echo '<br/><br/>Payment Date: ' . date('d/m/Y');
echo '<br/><br/>Merchant Reference Number: ' . $zv_orders_id;
echo '<br/><br/>POLi ID Number: ' . $_GET['externaltransactionid'];
}
?>
<!--poli end-->
Login to Poli console to set-up:
1 - Click on 'Entities' in left menu, then click 'Hosted Merchant Configuration' tab
2 - click 'Secure Mode' option if you want payment in secure mode
3 - If you checked 'Secure Mode', then you have to input 'Pass Phrase', 'Salt Value', 'Initial Encryption Data'
4 - "Successful URL", "Unsuccessful URL", both are set to 'your_site_url/poli.php'
Login to admin, then modules->payment to config Poli payment module, input your Poli info in configuration Poli page
THE PROBLEM I HAVE IS WHEN I CLICK ON THE FOLLOWING
1 - Click on 'Entities' in left menu, then click 'Hosted Merchant Configuration' tab
THERE IS NOTHING THERE, NO SECURE MODE
also what does it mean edit your includes templates\tpl_checkout_success_default.php
as the information is already there as written above
any help would be muchly appreciated