發表文章

目前顯示的是 12月 7, 2014的文章

Magento skip shipping method on checkout page

** Magento : Skip Shipping Method from onepage checkout ** First override following files ( i . e . in local directory ) rather than changing the core : 1 ) app / code / core / Mage / Checkout / Block / Onepage / Onepage . php 2 ) app / code / core / mage / checkout / controller / Onepagecontrollers . php 3 ) app / code / core / Mage / Sales / Model / Service / Quote . php 4 ) app / design / frontend / base / default / template / checkout / onepage / progress . phtml 5 ) app / code / core / Mage / Sales / Model / Service / Quote . php Once done follow the below steps : ** Step 1 : app / code / local / Mage / Checkout / Block / Onepage . php ** Change the line : $stepCodes = array ( 'billing' , 'shipping' , 'shipping_method' , 'payment' , 'review' ); In Magento 1.7 + you will find $stepCodes in for each just replace with below code with : $stepCodes = array ( 'billing' , 'shipping' , ...