@Kallie, Actually there is no such attributes for component which make it hidden from the quilt. But there is way by which we can add component to different quilt from another quilt if the first quilt is defined as nested and included in the another quilt. Example: If I have a ForumPage.quilt and I want to add component for only this page and to see in header. (like: Breadcrumb). So, I can directly add that component only for this quilt from XML view of the page, and add breadcrumb to header of the forum page quilt using below code. <add to="header"> <component id="common.widget.breadcrumb"/> </add> See attached screenshot for reference of hidden component. You will not see the component in grid column layout of page quilt. and when you switch page quilt to XML view you will se the component common.widget.breadcrumb is there in quilt and its referring to Header quilt in XML. and If you want to remove any of the component to not visible on the page you can use the below code to remove that component <remove from="breadcrumb" for="Header">
<component id="common.widget.breadcrumb"/>
</remove> .
... View more