我有观察员"checkout_cart_add_product_complete"
我想在cart.phtml
/template/ajaxminicart/checkout/cart.phtml
的内容
我该怎么做?
答案 0 :(得分:2)
检查以下内容,
<?php
$newBlock =Mage::app()->getLayout()
->createBlock('checkout/cart')
->setTemplate('ajaxminicart/checkout/cart.phtml')
-->toHtml();
echo $newBlock;
?>