I wanted to display company name in shipping information and i have tried to place company along with address fields in "default.html" require Js template in the following path
"app/design/frontend/themenamespace/themename/IWD_Opc/web/template/shipping-information/address-renderer/default.html"
But it's not rendering in the checkout page. my code as follows in 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 -->
I have verified in my account section and admin order view section, company name displaying perfectly.
Please help me to resolve this and thanks in advance.