osCommerce 中的“添加到购物车”按钮不断重定向回产品页面
我在 osCommerce 中有一个电子书项目,其中包含产品属性。当我从索引页面单击“添加到购物车”按钮时,它应该直接转到 shopping_cart.php 页面。但是,它只会不断将客户重定向回product_info.php 页面。
它为什么要这么做?
I have an ebook item in osCommerce that includes product attributes. When I click the Add to Cart button from the index page it should go directly to the shopping_cart.php page. However, it only keeps redirecting the customer back to the product_info.php page.
Why is it doing that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果产品具有属性,osCommerce 希望您在将产品添加到购物车之前选择其中之一。这就是为什么它将您重定向到产品详细信息页面。
If the product has attributes osCommerce expects that you select one of them before adding the product to the cart. That's why it is redirecting you to the product detail page.
试试这个代码:
find if ($col === 0) {$new_prods_content .= '';} (在第 29 行附近)
下面添加以下代码:
try this code:
find if ($col === 0) {$new_prods_content .= '';} (around line 29)
below add this code: