我在表product
中有1个自定义字段,名为api_pid
的字段。
我不知道如何从购物车页面获取此值。
在hookDisplayAfterProductThumbs
中很容易:
$product = $this->context->controller->getProduct();
$PID = $product->api_pid;
...但是我不知道如何在购物车中获得此值。我尝试编辑文件:\themes\classic\templates\checkout\_partials\cart-detailed-product-line.tpl
,并简单地添加了{$product.api_pid}
-但不起作用-空字符串。
致谢