Created
March 27, 2015 13:30
-
-
Save rodde177/f904ddce20da5af4f152 to your computer and use it in GitHub Desktop.
conversion pixel
This file contains 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 | |
$order_id = $this->getOrderId(); | |
$order = Mage::getModel('sales/order')->loadByIncrementId($this->getOrderId()); | |
$total = $order->getGrandTotal(); | |
?> | |
<?php echo $order_id; ?> | |
<?php echo $total; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment