Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save Quinten/47ed93666001938b988d to your computer and use it in GitHub Desktop.
Save Quinten/47ed93666001938b988d to your computer and use it in GitHub Desktop.
Sometimes you just need an empty container in Magento 2. But when a container is empty (contains no blocks) it is not rendered. This way you can add a html comment inside the container.
<block class="Magento\Framework\View\Element\Text" name="comment.placeholder">
<arguments>
<argument name="text" xsi:type="string"><![CDATA[<!-- -->]]></argument>
</arguments>
</block>
@CNSam
Copy link

CNSam commented Jul 7, 2017

@chedaroo seems this doesn't work in 2.1.7

@quisse
Copy link

quisse commented Aug 24, 2017

@CNSam because of this @chedaroo's solution doesn't work anymore. When in need an empty container, the shortest solution I've found atm is following (open for suggestions)

<!-- Force container to render -->
<block class="Magento\Framework\View\Element\Text">
    <arguments>
        <argument name="text" xsi:type="string"><![CDATA[&nbsp;]]></argument>
    </arguments>
</block>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment