I ran into a problem with my TPL template. The problem was the result of me adding hundreds of lines of model.item fields that I was getting a template error when I deployed.
In order to combat that, I need to make a child view for the model.item fields
<div data-view="techspecs"></div>
Within it's TPL, a simple row for each spec
<div class='row tspec'>
<div class='col-lg-6 col-md-6 col-sm-6 col-xs-6'>MODEL.ITEM.LABEL</div>
<div class='col-lg-6 col-md-6 col-sm-6 col-xs-6'>MODEL.ITEM.VALUE</div>
</div>
I am using the SuiteCommerce Base Theme as my theme. SCA version 2022.1.0
I am trying to understand SAID: 71051 https://suiteanswers.custhelp.com/app/answers/detail/a_id/71051/loc/en_US
It's overwhelming and doesn't tell me where to add my code on my theme.