CE 1.7을 사용하고 있으며 현재 Onepage Checkout에서 배송, 배송 방법 및 결제 단계를 제거하려고합니다. 에서 단계를 이미 제거했습니다 local\mage\checkout\block\onepage\abstract.php
. 계속 클릭하면 청구 정보에서 검토를 진행하려고 할 때 문제가 발생합니다. 어떤 아이디어라도 대단히 감사하겠습니다.
답변
다음 기능을 사용하여 아래 블록 파일을 다시 작성하십시오.
수업 재 작성 Mage_Checkout_Block_Onepage_Billing
public function canShip()
{
return false;
}
수업 재 작성 Mage_Checkout_Block_Onepage_Shipping_Method
public function isShow()
{
return false;
}
수업 재 작성 Mage_Checkout_Block_Onepage_Shipping
public function isShow()
{
return false;
}
이제 진행과 관련된 문제가 발생하지 않기를 바랍니다.
답변
조금 낡았지만 여기를 살펴보십시오.
로그인 제거
http://excellencemagentoblog.com/magento-onestep-checkout-remove-login-step
결제 + 배송 제거
http://excellencemagentoblog.com/magento-onestep-checkout-remove-payment-and-shipping-method-step
결제 제거
http://excellencemagentoblog.com/magento-onestep-checkout-remove-payment-method-step
배송 제거
http://excellencemagentoblog.com/magento-onestep-checkout-remove-shipping-method-step
단계 추가
http://excellencemagentoblog.com/magento-onestep-checkout-add-step
답변
@ heaven7 나는 전체적으로 OnepageController.php 에서이 비트를 변경했지만 이것을 조작하는 것 이상을 수행했지만 내 코드를 나열하여 정확히 변경된 것을 볼 수 있습니다. 이 작업은 코어 폴더가 아닌 로컬 복사본에서만 수행해야합니다.
`protected $_sectionUpdateFunctions = array(
/* 'payment-method' => '_getPaymentMethodsHtml',
'shipping-method' => '_getShippingMethodsHtml',*/
'review' => '_getReviewHtml',
); public function saveBillingAction()
{
if ($this->_expireAjax()){
return;
}
if ($this->getRequest()->isPost()) {
$data = $this->getRequest()->getPost('billing', array());
$customerAddressId = $this->getRequest()->getPost('billing_address_id', false);
$result = $this->getOnepage()->saveBilling($data, $customerAddressId);
// if (!isset($result['error'])) {
// if ($this->getOnepage()->getQuote()->isVirtual()) {
$this->loadLayout('checkout_onepage_review');
$result['goto_section'] = 'review';
$result['update_section'] = array(
'name' => 'review',
'html' => $this->_getReviewHtml()
);
}
/*elseif (isset($data['use_for_shipping']) && $data['use_for_shipping'] == 1) {
$this->saveShippingMethodAction();
$this->loadLayout('checkout_onepage_review');
$result['goto_section'] = 'review';
$result['update_section'] = array(
'name' => 'review',
'html' => $this->_getReviewHtml()
);
$result['allow_sections'] = array('shipping','review');
$result['duplicateBillingInfo'] = 'true';
}*/
/* else {
//$result['goto_section'] = 'shipping';
//TODO There is an error with loading the layout of the Review tab.
$result['goto_section'] = 'review';
}*/
// }
$this->getResponse()->setBody(Mage::helper('core')->jsonEncode($result));
}
public function saveShippingAction()
{
if($this->_expireAjax()){
return;
}
if ($this->getRequest()->isPost()) {
$data = $this->getRequest()->getPost('shipping', array());
$customerAddressId = $this->getRequest()->getPost('shipping_address_id', false);
$result = $this->getOnepage()->saveShipping($data, $customerAddressId);
if (!isset($result['error'])) {
$this->saveShippingMethodAction();
$this->loadLayout('checkout_onepage_review');
$result['goto_section'] = 'review';
$result['update_section'] = array(
'name' => 'review',
'html' => $this->_getReviewHtml()
);
}
$this->getResponse()->setBody(Mage::helper('core')->jsonEncode($result));
}
}
public function saveShippingMethodAction()
{
if ($this->_expireAjax()) {
return;
}
if ($this->getRequest()->isPost()) {
$data = $this->getRequest()->getPost('shipping_method', '');
$result = $this->getOnepage()->saveShippingMethod($data);
/*
$result will have erro data if shipping method is empty
*/
if(!$result) {
Mage::dispatchEvent('checkout_controller_onepage_save_shipping_method',
array('request'=>$this->getRequest(),
'quote'=>$this->getOnepage()->getQuote()));
$this->getOnepage()->getQuote()->collectTotals();
$this->getResponse()->setBody(Mage::helper('core')->jsonEncode($result));
$result['goto_section'] = 'review';
$result['update_section'] = array(
'name' => 'review',
'html' => $this->_getReviewHtml()
);
}
$this->getOnepage()->getQuote()->collectTotals()->save();
$this->getResponse()->setBody(Mage::helper('core')->jsonEncode($result));
}
}