Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

How to disable Sidekick in sightly page component

Avatar

Level 2

We can hide/disable sidekick in author mode in page component by removing/commenting or by not including "/libs/wcm/core/components/init/init.jsp" in any of the jsps of the page or its super/parent resource. But how to achieve the same in sightly page component? What/where is the line of code that enables/disables the sidekick in a sightly page? Any help would be greatly appreciated.

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi,

In sightly also this file will be included, its will like this,

<sly data-sly-include="/libs/wcm/core/components/init/init.jsp" data-sly-unwrap/>

If you have created project via eclipse plugin, you can find it at location 

\apps\[project]\components\structure\page\partials\headlibs.html

View solution in original post

4 Replies

Avatar

Correct answer by
Level 10

Hi,

In sightly also this file will be included, its will like this,

<sly data-sly-include="/libs/wcm/core/components/init/init.jsp" data-sly-unwrap/>

If you have created project via eclipse plugin, you can find it at location 

\apps\[project]\components\structure\page\partials\headlibs.html

Avatar

Level 2

Hi Dubey,

Thanks for your reponse. What you said is true. But following is my usecase.

1. I created a template using the page component wcm/foundation/components/page and created a page using this template. When I access this page, I am able to see the sidekick. I want to hide this sidekick. Where is the code that is enabling this sidekick?

Avatar

Level 10

Take a look at /libs/wcm/foundation/components/page/author.html at line 39.

thanks

Avatar

Level 2

Hi Dubey,

Thanks, it was helpful...