Last active
December 20, 2015 13:19
-
-
Save hanafiah/6138079 to your computer and use it in GitHub Desktop.
Part B Put this code to catalog/view/theme/default/template/common/success.tpl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Jomniaga Conversion code | |
* | |
* Put this file to catalog/view/theme/default/template/common/success.tpl | |
* before | |
* <?php echo $content_bottom; ?> | |
* | |
*/ | |
if(isset($this->session->data['jomniaga'])){ | |
$conversion = $this->session->data['jomniaga']; | |
?> | |
<script type="text/javascript" src="http://www.jomniaga.com/api/conversion?transtype=SALE&amount=<?php echo round($conversion['cva'],2);?>&tracking=<?php echo $conversion['cvn'];?>"></script> | |
<noscript><img src="http://www.jomniaga.com/api/conversion?transtype=SALE&amount=<?php echo round($conversion['cva'],2);?>&tracking=<?php echo $conversion['cvn'];?>" width="1" height="1" border="0" /></noscript> | |
<?php | |
unset($this->session->data['jomniaga']); | |
/** | |
* EO: Jomniaga Conversion code | |
*/ | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment