使Magento“继续购物”按钮重定向到最后添加到购物车产品的类别

时间:2012-08-31 21:19:27

标签: magento continue

继续购物按钮在购物车页面上无法正常工作。

单击按钮后,转到主页。

我想转到上一类别页面。

2 个答案:

答案 0 :(得分:5)

您所描述的按钮确实有效。返回主页可能是Magento的标准行为之一。

要回答你的问题,这就是你能做的。

请注意,如果该产品存在多个类别,则会重定向到其附加的第一个类别。

这些代码已经在Magento 1.7.0.0上成功测试过。

PHP代码将是:

<?php
    $lastProductAddedToCartId = Mage::getSingleton('checkout/session')->getLastAddedProductId();
    if($lastProductAddedToCartId) {
        $productCategoryIdsArray = Mage::getModel('catalog/product')->load($lastProductAddedToCartId)->getCategoryIds();
        $continueShoppingCategoryUrl = Mage::getModel('catalog/category')->load($productCategoryIdsArray[0])->getUrl();
    }
?>

HTML按钮代码为:

<button type="button" title="Continue Shopping" class="button btn-continue" onclick="setLocation('<?php echo (isset($continueShoppingCategoryUrl)) ? $continueShoppingCategoryUrl : $this->getContinueShoppingUrl(); ?>')"><span><span>Continue Shopping</span></span></button>

例如,如果您将PHP代码放在template/checkout/cart.phtml文件的开头而不是最佳实践,则上述代码可以正常工作。

最佳做法是:

1)你自己的助手,你可以在按钮的setLocation() PHP参数中调用,如下所示:

setLocation('<?php echo (Mage::helper('myhelper')->getContinueShoppingCategoryUrl()) ? Mage::helper('myhelper')->getContinueShoppingCategoryUrl() : $this->getContinueShoppingUrl(); ?>')

2)或(不太好的IMO),重写Mage_Checkout_Block_Cart::getContinueShoppingUrl()方法。

答案 1 :(得分:0)

在对我的第一个回答发表评论之后,我制作了一个更复杂的脚本,这是第一个答案,因此我将其作为一个单独的答案发布。请小心,两者在PHP方面和PHTML方面都有所不同。

以下是我在Magento CE 1.7.0.0上成功测试的内容。 下面的场景在我提供的注释代码中按预期工作。


目录配置

A类(家具)

  • 产品1(沙发)

B类(电子产品)

  • 产品2(桌面)
  • 产品3(笔记本电脑)

方案

a)将产品1添加到购物车=&gt; “继续购物”在添加后立即重定向到类别A

b)导航网站并返回购物车而不添加新产品=&gt; “继续购物”重定向到A类

c)将产品2添加到购物车=&gt; “继续购物”在添加后立即重定向到类别B

d)导航网站并返回购物车而不添加新产品=&gt; “继续购物”会重定向到主页,因为购物车中的商品不属于同一类别。

e)从购物车中移除产品1 =&gt; “继续购物”始终重定向到B类

f)将产品3添加到购物车=&gt; “继续购物”始终重定向到B类


PHP代码

<?php
    $continueShoppingCategoryUrl = false;

    /**
     * If we are on the cart page just after we added an item to the cart,
     * we use its category for "Continue Shopping" redirect
     */
    $lastProductAddedToCartId = Mage::getSingleton('checkout/session')->getLastAddedProductId();
    if($lastProductAddedToCartId) {
        $productCategoryIdsArray = Mage::getModel('catalog/product')->load($lastProductAddedToCartId)->getCategoryIds();
        $continueShoppingCategoryUrl = Mage::getModel('catalog/category')->load($productCategoryIdsArray[0])->getUrl();
    }

    /**
     * Otherwise, if we are on the cart page at any other moment, we make sure
     * that all items do belong to the same category and, if this is
     * the case, we use this unique category for "Continue Shopping" redirect
     * 
     * If all cart items do not belong to the same category, we are
     * compelled to let Magento process in its standard way because we 
     * cannot tell which category is the one to redirect to!
     */
    if(!$continueShoppingCategoryUrl) {
        $allCategoryIds = array();
        $cartItems = Mage::helper('checkout/cart')->getQuote()->getAllVisibleItems();
        foreach($cartItems as $cartItem) {
            $productCategoryIds = Mage::getModel('catalog/product')->load($cartItem->getProductId())->getCategoryIds();
            $allCategoryIds = array_merge($allCategoryIds, $productCategoryIds);
        }
        $allCategoryIds = array_unique($allCategoryIds);
        if(count($allCategoryIds) === 1) {
            $continueShoppingCategoryUrl = Mage::getModel('catalog/category')->load(reset($allCategoryIds))->getUrl();
        }
    }
?>

HTML按钮代码

<button type="button" title="Continue Shopping" class="button btn-continue" onclick="setLocation('<?php echo ($continueShoppingCategoryUrl) ? $continueShoppingCategoryUrl : $this->getContinueShoppingUrl(); ?>')"><span><span>Continue Shopping</span></span></button>

最佳做法提醒

在这里,最佳做法是在按钮上调用Helper,而不是在cart.phtml模板中使用原始PHP代码。