-
- theKlintHolland

-
Total Posts: 1
Joined: 2012-11-02
|
First post here for a Magento newbie. To top off the newb-ness I\’m not working with a new installation but inheriting someone else\’s previous mess. The checkout progress is displaying, but I have no idea how to enable the mini-cart during checkout. Can someone point me to a resource or give me a hand?
First post here for a Magento newbie. To top off the newb-ness I\'m not working with a new installation but inheriting someone else\'s previous mess. The checkout progress is displaying, but I have no idea how to enable the mini-cart during checkout. Can someone point me to a resource or give me a hand?
[code] <checkout_onepage_index translate=\"label\"> <label>One Page Checkout</label> <!-- Mage_Checkout --> <remove name=\"right\"/>
<reference name=\"root\"> <action method=\"setTemplate\"><template>page/2columns-left.phtml</template></action> </reference> <reference name=\"left\"> <action method=\"unsetChildren\"></action> <block type=\"page/html_wrapper\" name=\"checkout.progress.wrapper\" translate=\"label\"> <label>Checkout Progress Wrapper</label> <action method=\"setElementId\"><value>checkout-progress-wrapper</value></action> <block type=\"checkout/onepage_progress\" name=\"checkout.progress\" before=\"-\" template=\"checkout/onepage/progress.phtml\"/> </block> </reference> <reference name=\"content\"> <block type=\"checkout/onepage\" name=\"checkout.onepage\" template=\"checkout/onepage.phtml\"> <block type=\"checkout/onepage_login\" name=\"checkout.onepage.login\" as=\"login\" template=\"checkout/onepage/login.phtml\"> <block type=\"page/html_wrapper\" name=\"checkout.onepage.login.before\" as=\"login_before\" translate=\"label\"> <label>Login/Registration Before</label> <action method=\"setMayBeInvisible\"><value>1</value></action> </block> </block> <block type=\"checkout/onepage_billing\" name=\"checkout.onepage.billing\" as=\"billing\" template=\"checkout/onepage/billing.phtml\"/> <block type=\"checkout/onepage_shipping\" name=\"checkout.onepage.shipping\" as=\"shipping\" template=\"checkout/onepage/shipping.phtml\"/> <block type=\"checkout/onepage_shipping_method\" name=\"checkout.onepage.shipping_method\" as=\"shipping_method\" template=\"checkout/onepage/shipping_method.phtml\"> <block type=\"checkout/onepage_shipping_method_available\" name=\"checkout.onepage.shipping_method.available\" as=\"available\" template=\"checkout/onepage/shipping_method/available.phtml\"/> <block type=\"checkout/onepage_shipping_method_additional\" name=\"checkout.onepage.shipping_method.additional\" as=\"additional\" template=\"checkout/onepage/shipping_method/additional.phtml\"/> </block> <block type=\"checkout/onepage_payment\" name=\"checkout.onepage.payment\" as=\"payment\" template=\"checkout/onepage/payment.phtml\"> <block type=\"checkout/onepage_payment_methods\" name=\"checkout.payment.methods\" as=\"methods\" template=\"checkout/onepage/payment/methods.phtml\"> <action method=\"setMethodFormTemplate\"><method>purchaseorder</method><template>payment/form/purchaseorder.phtml</template></action> </block> </block> <block type=\"checkout/onepage_review\" name=\"checkout.onepage.review\" as=\"review\" template=\"checkout/onepage/review.phtml\"/> </block> </reference> </checkout_onepage_index>
|