Magento Onepage 결제에서 단계를 제거하는 방법? 에서 단계를 이미 제거했습니다

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;
    }

이제 진행과 관련된 문제가 발생하지 않기를 바랍니다.


답변


답변

@ 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));
        }
    }


답변

이 링크를 따르십시오

http://sapnandu-magento.blogspot.in/2012/04/magento-onestep-checkout-remove.html

또는

http://knowledgevalley.blogspot.in/2012/01/magento-skip-shipping-method-from.html

그것은 당신을 도울 수 있습니다


답변