1
我正在建立第二個添加到購物車按鈕與一個magento平臺上不同的重定向。 我用過的教程是自我解釋。 See here 它的工作原理是重定向。 事情是:車本身不再顯示其頁面(cart.phtml)。config.xml覆蓋購物車中的結果不可見?
任何想法如何解決這個問題?或者問題存在的地方? 如果我刪除購物車下方的代碼,則會再次返回,因爲重定向不再有效。
文件:config.xml中
<global>
<routers>
<checkout>
<rewrite>
<cart>
<to>mycheckout/cart</to>
<override_actions>true</override_actions>
<actions>
<add>
<to>mycheckout/cart/add</to>
</add>
</actions>
</cart>
</rewrite>
</checkout>
</routers>
</global>