我試圖在Opencart
版本2.0.1.1
的打印發票頁面上顯示產品屬性。將產品屬性添加到opencart發票
所以由order_invoice.tpl
頁我用<?php print_r ($attribute);?>
看到它是拉什麼數據上添加$this->load->model("catalog/product");
然後我加入「屬性」 =>$this->model_catalog_product->getProductAttributes($product['product_id'])
到$product_data[] = array()
現在爲止,我已經編輯admin/controller/sale/order.php
它表明:
Array
(
[attribute_id] => 1
[product_attribute_description] => Array
(
[1] => Array
(
[text] => 240
)
)
)
的[text] => 240
是屬性的價值,但我不能爲我的克生活等屬性名稱顯示出來,我已經嘗試過無數次嘗試,並且最常見的建議是我試過$attribute['name'];
,但這沒有任何結果。
有人可以請解釋我如何可以正確檢索屬性名稱和屬性值。
感謝做一些努力和發佈您的試驗,我會回答你的問題現在 –