以前使用bigcommerce時,我們可以選擇是否彈出窗口或在用戶點擊「添加到購物車」按鈕時將用戶帶到購物車。有誰知道這個功能是否已被BigCommerce取走,或者我現在可以在哪裏找到該設置?謝謝!Bigcommerce加入購物車彈出式菜單
1
A
回答
0
+0
感謝您的詳細解答Raj,但似乎我的項目有一個新的或不同的版本後端。我不再在「顯示」選項卡中顯示該選項。 – gBasgaard
1
你知道,如果你正在使用的模板或藍圖框架?
如果您使用的是藍圖,您可以轉到「存儲設置>存儲設置>顯示」,然後選擇「將它們帶到購物車」。
如果您使用模具,該功能是隱藏的,您必須進行定製才能使其工作。如果您的產品沒有任何選項,您可以按照此頁上的說明操作:https://support.bigcommerce.com/articles/Public/How-can-I-add-a-product-to-the-cart-with-a-link/#add-to-cart。
但是,如果你有選擇,這將無法正常工作,因爲它沒有更新url中的sku。我所做的工作是編輯product-details.js
首先,您需要下載主題才能編輯js文件。然後,開始在line 234
,你會看到下面的代碼:
// Open preview modal and update content
if (this.previewModal) {
this.previewModal.open();
this.updateCartContent(this.previewModal, response.data.cart_item.hash);
} else {
this.$overlay.show();
// if no modal, redirect to the cart page
this.redirectTo(response.data.cart_item.cart_url || this.context.urls.cart);
}
直接在註釋中,添加/ *然後再往一行else語句(})的右大括號下,並添加* /關閉長期評論。代碼現在看起來像這樣:
// Open preview modal and update content
/*
if (this.previewModal) {
this.previewModal.open();
this.updateCartContent(this.previewModal, response.data.cart_item.hash);
} else {
this.$overlay.show();
// if no modal, redirect to the cart page
this.redirectTo(response.data.cart_item.cart_url || this.context.urls.cart);
}
*/
this.redirectTo(response.data.cart_item.cart_url || this.context.urls.cart);
讓我知道這是否有幫助!
相關問題
- 1. BigCommerce購物車計數
- 2. Newsletter首頁彈出式菜單--Bigcommerce
- 3. 加入購物車
- 4. Bigcommerce模板建議購物車內容
- 5. 添加購物車上的購物車
- 6. 加入購物車表(AWS)
- 7. Shopify API - 加入購物車
- 8. Woocommerce加入購物車error
- 9. PHP加入購物車
- 10. 使用Magento Observers顯示添加到購物車的最後一個物品的彈出式菜單
- 11. minicart.js不工作,購物車不彈出
- 12. Magento加入購物車購物車頁面
- 13. CSS購物車下拉菜單
- 14. 放入購物車購物車按鈕,PHP購物腳本
- 15. 顯示彈出菜單中選擇「繼續購物」和「去購物車」,在添加產品到購物車後,在Magento
- 16. 導致使用彈簧在購物車中實現購物車
- 17. woocommerce菜單購物車,當購物車空時如何隱藏購物車標籤
- 18. BigCommerce將功能添加到購物車頁面或支付
- 19. 如何改變virtuemart 2添加到購物車彈出文本
- 20. 加入購物車not working opencart mobile site
- 21. 在html中加入購物車&結賬
- 22. Magento產品未加入購物車
- 23. Virtuemart call加入購物車功能
- 24. 加入購物車後Shopify flash消息?
- 25. Prestashop「加入購物車」由crawler訪問?
- 26. 加入購物車不起作用
- 27. 載體已加入購物車
- 28. magento加入購物車功能
- 29. Magento 2商品未加入購物車
- 30. woocommerce_quantity_input無法加入購物車循環
您是使用模具還是藍圖? – Alyss
@Alyss我正在使用模板 – gBasgaard