Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Limiting allowed components in a template in cq5

Tags:

aem

I have a template that I want to limit to only using a certain subset of components. I've created the template, set the components I want to use in design mode and everything looks great, but when I export that template and install it on another cq5 instance the component list that I've set for that template vanish. Any idea how to get them to stick?

like image 303
Ben Newman Avatar asked Nov 18 '25 21:11

Ben Newman


1 Answers

The above answer is correct, but if you need more info, as part of the template implementation, you can define the list of components that will be rendered in the sidekick for your template by defining the following property.

components="[/libs/foundation/components/text,/libs/foundation/components/textimage]">

This will sit under the following node (xml format here)

<TEMPLATENAME jcr:primaryType="nt:unstructured">
    <content
            jcr:lastModified="{Date}2014-04-11T13:04:48.855+10:00"
            jcr:lastModifiedBy="admin"
            jcr:primaryType="nt:unstructured"
            sling:resourceType="/libs/foundation/components/parsys"
            components="[/libs/foundation/components/text,/libs/foundation/components/textimage]">
        </content>
</TEMPLATENAME>

As long as you take this with your project to another instance, you'll keep the settings.

always take /etc/designs/projectDesignName directory with you

like image 60
Alisneaky Avatar answered Nov 22 '25 04:11

Alisneaky



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!