I take that back.....
I checked the order history and nothing was logged. I can PM backend details if necessary. I should also note the only changes I've made to the "checkout / end" and "checkout / after_end" files is a tracking pixel
<?php
/**
* @package HikaShop for Joomla!
* @version 3.5.0
* @author hikashop.com
* @copyright (C) 2010-2018 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?>
<?php if ($this->order->order_status == 'confirmed') { ?>
<!-- FB PIXEL -->
<script>
fbq('track', 'Purchase', <?php
echo "{value: ".$this->order->order_full_price.", currency:'USD'}";
?>);
</script>
<!-- Event snippet for conversion page -->
<script>
gtag('event', 'conversion', {
'send_to': 'XXXXXXXXXXXXXXXXXXXX',
'value': '<?php echo $this->order->order_full_price;?>',
'currency': 'USD',
'transaction_id': ''
});
</script>
<?php } else { ?>
<!-- DON'T USE PIXEL -->
<?php } ?>
<?php
if(empty($this->html)) {
echo JText::_('THANK_YOU_FOR_PURCHASE');
if(!empty($this->url))
echo '<br/>'.JText::sprintf('YOU_CAN_NOW_ACCESS_YOUR_ORDER_HERE', $this->url);
} else {
echo $this->html;
}
$this->nextButton = false;