내 커뮤니티 업적 표시줄을 확대합니다.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

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 채택된 해결책 개

Avatar

정확한 답변 작성자:
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

원본 게시물의 솔루션 보기

4 답변 개

Avatar

정확한 답변 작성자:
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...