我正在使用Prestashop 1.6,並且我想知道如何在Ajax購物車彈出窗口中檢索當前產品的製造商ID。 謝謝Prestashop - 使用Ajax購物車獲取產品的id_manufacturer
0
A
回答
0
生產者的ID存在於產品項目中。 要調用使用,你喜歡:
{$product.id_manufacturer}
該文件是:
/themes/[name-your-themes]/modules/blockcart/blockcart.tpl
0
在
\themes\YOUR_THEME\modules\blockcart\blockcart-json.tpl
添加
"id_manufacturer": {$product.id_manufacturer},
+0
我會試試看,謝謝! –
相關問題
- 1. 錯誤使用Ajax購物車,當上附加的Prestashop產品
- 2. 如何限制購物車產品Prestashop
- 3. 打開購物車 - 獲取產品選項的產品ID - sql
- 4. 獲取Magento購物車中的產品產品
- 5. Prestashop購物車
- 6. prestashop - 將產品添加到購物車時抓取
- 7. 如何獲取購物車內容? (prestashop)
- 8. 購物車儲備產品
- 9. Magento - 獲取給定產品ID的購物車商品
- 10. 的Prestashop:將產品添加到一個新的購物車
- 11. AJAX - 購物車Magento總計和購物車中的物品
- 12. 使用woocommerce中的ajax刪除購物車中的產品
- 13. Prestashop添加產品到購物車奇怪的數量
- 14. 的Prestashop產品list.tpl自定義添加到購物車款
- 15. Magento ajax購物車沒有刪除購物車中的最後一個產品?
- 16. WordPress的購物車添加動態產品到購物車
- 17. 結賬購物車中的可選產品(/結帳/購物車/)
- 18. 購物車重定向Prestashop非Ajax
- 19. 如何在ajax-cart.js(prestashop模塊)中獲取購物車ID
- 20. Prestashop Webservice更新購物車產品'數量'PHP
- 21. 不可能將產品添加到購物車。 Prestashop
- 22. 購物車:使用rails處理沒有產品錯誤/ ajax
- 23. Magento的:獲取在購物車的數量給定產品
- 24. 獲取購物車頁面中的具體產品
- 25. OpenCart:從購物車中獲取產品的網址
- 26. 如何在Magento中獲取購物車中的當前產品?
- 27. 在購物車頁面中獲取產品的product_cat woocommerce
- 28. 獲取Magento購物車中的產品數量?
- 29. 我們如何從會話變量中獲取購物車中每件商品的產品ID?在購物車
- 30. 如何在購物車中使用模型獲取物品? (Magento)
比ks,但我實際上在談論文件「ajax-cart.js」,它不識別「product.id_manufacturer」。 –