Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/magento/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Magento Mobile Shoppe主题单页签出不适用于CE 1.8_Magento_Mobile_Magento 1.8 - Fatal编程技术网

Magento Mobile Shoppe主题单页签出不适用于CE 1.8

Magento Mobile Shoppe主题单页签出不适用于CE 1.8,magento,mobile,magento-1.8,Magento,Mobile,Magento 1.8,我有一个真正的问题与结帐,因为我卡在第3步运输方法 有一件事我注意到右边的“你的结账过程”并没有加载内容 有人能帮我吗 我将在上次帖子被删除后重试。 要使Mobileshoppe恢复工作,您需要采取两个步骤: 1. 转到/app/design/frontend/base/default/template/checkout/onepage/payment.phtml 并更改此项(我的第36行) 对此 <fieldset id="checkout-payment-method-load"&

我有一个真正的问题与结帐,因为我卡在第3步运输方法

有一件事我注意到右边的“你的结账过程”并没有加载内容


有人能帮我吗

我将在上次帖子被删除后重试。 要使Mobileshoppe恢复工作,您需要采取两个步骤:

1. 转到/app/design/frontend/base/default/template/checkout/onepage/payment.phtml

并更改此项(我的第36行)


对此

<fieldset id="checkout-payment-method-load">
    <?php echo $this->getChildHtml('methods') ?>
</fieldset> 



2. 打开app/design/frontend/default/mobileshoppe/template/checkout/onepage/review/info.phtml

找到这一行:

review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder') ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));
<block type="checkout/onepage_progress" name="checkout.progress" before="-" template="checkout/onepage/progress.phtml"/>
review=newreview(“”,,$('checkout-agreements');
并将其更改为

review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder', array('form_key' => Mage::getSingleton('core/session')->getFormKey())) ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));
review=newreview(“”,,$('checkout-agreements');


这是处理/过账/保存订单的新方式。 这可能对升级/更新到Magento 1.8后仍停留在onepage签出上的其他人也有帮助


祝你好运。

自从上次帖子被删除后,我会再试一次。 要使Mobileshoppe恢复工作,您需要采取两个步骤:

1. 转到/app/design/frontend/base/default/template/checkout/onepage/payment.phtml

并更改此项(我的第36行)


对此

<fieldset id="checkout-payment-method-load">
    <?php echo $this->getChildHtml('methods') ?>
</fieldset> 



2. 打开app/design/frontend/default/mobileshoppe/template/checkout/onepage/review/info.phtml

找到这一行:

review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder') ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));
<block type="checkout/onepage_progress" name="checkout.progress" before="-" template="checkout/onepage/progress.phtml"/>
review=newreview(“”,,$('checkout-agreements');
并将其更改为

review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder', array('form_key' => Mage::getSingleton('core/session')->getFormKey())) ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));
review=newreview(“”,,$('checkout-agreements');


这是处理/过账/保存订单的新方式。 这可能对升级/更新到Magento 1.8后仍停留在onepage签出上的其他人也有帮助


祝你好运。

我希望我没有做错什么,为你的第二个问题发布了另一个答案。我也做过结帐进度的事情,但它不是100%完美。看看这是否适合您:

1。打开文件app/design/frontend/default/mobileshoppe/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>
2. 搜索此行:

review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder') ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));
<block type="checkout/onepage_progress" name="checkout.progress" before="-" template="checkout/onepage/progress.phtml"/>

3. 将其替换为以下内容:

<block type="checkout/onepage_progress" name="checkout.progress" before="-" template="checkout/onepage/progress.phtml">
    <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>

我希望我没有做错什么,为你的第二个问题发布了另一个答案。我也做过结帐进度的事情,但它不是100%完美。看看这是否适合您:

1。打开文件app/design/frontend/default/mobileshoppe/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>
2. 搜索此行:

review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder') ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));
<block type="checkout/onepage_progress" name="checkout.progress" before="-" template="checkout/onepage/progress.phtml"/>

3. 将其替换为以下内容:

<block type="checkout/onepage_progress" name="checkout.progress" before="-" template="checkout/onepage/progress.phtml">
    <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>

在这里,我发布了关于结帐进度的第二个问题答案,一个接一个地向后消失

在前端/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>

换成这个

<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 for 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>


我希望这将解决您的问题,请评论和反馈

我在这里发布了你的第二个问题答案,关于结帐进度一个接一个地向后消失了

在前端/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>

换成这个

<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 for 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>


我希望这将解决您的问题,请评论和反馈

我对Magento 1.8.1.0有问题。我就这样解决了

  • 打开app/design/frontend/default/mobileshoppe/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>
    
  • 换线

                   <block type="checkout/onepage_payment_methods" name="checkout.payment.methods" as="methods" template="checkout/onepage/payment/methods.phtml">
    
    
    

    
    

  • 祝你好运

    我对Magento 1.8.1.0有问题。我就这样解决了

  • 打开app/design/frontend/default/mobileshoppe/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>
    
  • 换线

                   <block type="checkout/onepage_payment_methods" name="checkout.payment.methods" as="methods" template="checkout/onepage/payment/methods.phtml">
    
    
    

    
    

  • 祝你好运

    非常感谢你,马塞尔。你的修复让我通过了所有步骤,完成了我的订单。请再来一份。如何使右侧选项卡“您的结帐流程”正常工作?e、 g显示步骤。目前它刚刚倒塌。非常感谢你,马塞尔。你的修复让我通过了所有步骤,完成了我的订单。请再来一份。如何使右侧选项卡“您的结帐流程”正常工作?e、 g显示步骤。目前它刚刚倒塌。再次非常感谢你,马塞尔。我已经照你的建议做了。最初,它加载了所有4个步骤:账单地址、发货地址、发货方式、付款方式。然而,当我向下移动订单以完成订单时,右侧的台阶一个接一个地向后消失,直到当我在步骤Ord中时,没有显示任何东西