|
Ok-this is what I’ve done:
checkout.xml
<checkout_multishipping_success>
<update handle="checkout_multishipping"/>
<!-- Mage_Checkout -->
<reference name="content">
<block type="checkout/multishipping_success" name="checkout_success" template="checkout/multishipping/success.phtml"/>
</reference>
<reference name="before_body_end">
<block name="omniture_values" template="checkout/omniture_values.phtml" type="core/template" />
</reference>
</checkout_multishipping_success>
1column.phtml
.
.
.
<!-- start footer -->
<div class="footer-container">
<div class="footer">
<?php echo $this->getChildHtml('footer') ?>
</div>
</div>
<!-- end footer -->
<?php echo $this->getChildHtml('before_body_end') ?>
...and omniture_values.phtml does exist
I’ve refreshed the cache, but still to no effect. Is there something I’m missing?
|