In vendor\magento\module-catalog\view\frontend\templates\product\list.phtml, there is a code line <?php echo $block->getAdditionalHtml() ?>. From where did get this data?
asked Dec 30, 2015 at 11:44
Asha
6272 gold badges10 silver badges28 bronze badges
1 Answer 1
You can set an additional html for a block with the $block->setAdditionalHtml("<div>test</div>") call.
For now, the core never uses this possibility.
answered Jan 28, 2016 at 13:39
Dmitrii Fediuk
4,8362 gold badges24 silver badges19 bronze badges
default