Salesforce Comm-Dev-101 Question Answer
Given a sandbox with an active slot configuration with the following specifications:
Content type set to product
With some product configured
With the following rendering template:slots/product/product_1x2.isml
Correctly enabled and scheduled
And given the code contained in the selected rendering template:
< isif condition= " ${!empty(slotcontent)} " >
< isloop iterator= " ${slotcontent.content} " alias= " product " >
< div class= " product " >
< isprint value= " ${product.getID()} " > < br / >
< isprint value= " ${product.getName()} " > < br / >
< /div >
< /isloop >
< /isif >
Is an additional action needed for this to work as intended?

