Magento Mobile Shoppe Theme onepage checkout not working on CE 1.8 -
i'm having real issue checkout i'm stuck on step 3 shipping method.
one thing noticed "your checkout process" on right hand side doesn't load content.
can me please?
here posted second question answer checkout progress disappeared backward 1 one.
look code in frontend/default/theme/layout/checkout.xml
<checkout_onepage_progress> <!-- mage_checkout --> <remove name="right"/> <remove name="left"/> <block type="checkout/onepage_progress" name="root" output="tohtml" template="checkout/onepage/progress.phtml"> <block type="checkout/onepage_payment_info" name="payment_info"> <action method="setinfotemplate"><method></method><template></template></action> </block> </block> </checkout_onepage_progress>
change this
<checkout_onepage_progress> <!-- mage_checkout --> <remove name="right"/> <remove name="left"/> <block type="checkout/onepage_progress" name="root" output="tohtml" template="checkout/onepage/progress.phtml"> <action method="setinfotemplate"><method></method><template></template></action> <block type="checkout/onepage_progress" name="billing.progress" template="checkout/onepage/progress/billing.phtml"></block> <block type="checkout/onepage_progress" name="shipping.progress" template="checkout/onepage/progress/shipping.phtml"></block> <block type="checkout/onepage_progress" name="shippingmethod.progress" template="checkout/onepage/progress/shipping_method.phtml"></block> <block type="checkout/onepage_progress" name="payment.progress" template="checkout/onepage/progress/payment.phtml"></block> </block> </checkout_onepage_progress> <!-- individual blocks progress steps begins --> <checkout_onepage_progress_billing> <!-- mage_checkout --> <remove name="right"/> <remove name="left"/> <block type="checkout/onepage_progress" name="root" output="tohtml" template="checkout/onepage/progress/billing.phtml"> <action method="setinfotemplate"><method></method><template></template></action> </block> </checkout_onepage_progress_billing> <checkout_onepage_progress_shipping> <!-- mage_checkout --> <remove name="right"/> <remove name="left"/> <block type="checkout/onepage_progress" name="root" output="tohtml" template="checkout/onepage/progress/shipping.phtml"> <action method="setinfotemplate"><method></method><template></template></action> </block> </checkout_onepage_progress_shipping> <checkout_onepage_progress_shipping_method> <!-- mage_checkout --> <remove name="right"/> <remove name="left"/> <block type="checkout/onepage_progress" name="root" output="tohtml" template="checkout/onepage/progress/shipping_method.phtml"> <action method="setinfotemplate"><method></method><template></template></action> </block> </checkout_onepage_progress_shipping_method> <checkout_onepage_progress_payment> <!-- mage_checkout --> <remove name="right"/> <remove name="left"/> <block type="checkout/onepage_progress" name="root" output="tohtml" template="checkout/onepage/progress/payment.phtml"> <block type="checkout/onepage_payment_info" name="payment_info"> <action method="setinfotemplate"><method></method><template></template></action> </block> <action method="setinfotemplate"><method></method><template></template></action> </block> </checkout_onepage_progress_payment>
i hope resolve issue please comment & feedback!!
Comments
Post a Comment