我想在运输信息中显示公司名称,并且我试图将公司以及“ default.html”中的地址字段放置在以下路径中,要求使用Js模板
"app/design/frontend/themenamespace/themename/IWD_Opc/web/template/shipping-information/address-renderer/default.html"
但是它不在结帐页面中呈现。我的代码如下:defauly.html
<!-- ko if: (visible()) -->
<!-- ko text: address().firstname --><!-- /ko --> <!-- ko text: address().lastname --><!-- /ko --><br/>
<!-- ko text: address().company --><!-- /ko --><br/>
<!-- ko text: address().street --><!-- /ko --><br/>
<!-- ko text: address().city --><!-- /ko -->, <!-- ko text: address().region --><!-- /ko --> <!-- ko text: address().postcode --><!-- /ko --><br/>
<!-- ko text: getCountryName(address().countryId) --><!-- /ko --><br/>
<!-- ko text: address().telephone --><!-- /ko --><br/>
<!-- /ko -->
我已经在“帐户”部分和“管理订单视图”部分中进行了验证,公司名称完美显示。
请帮助我解决此问题,并在此先感谢。