Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Iparsys Issue

Avatar

Level 2

Hi,

 We are facing the issue where we have used iparsys to create global header and footer. But we don't want the edit option and "drag components or assets here" in the child pages. Is there any way we can control this for all the users or the particular group of users. I want to disable the UI on the child pages and for a particular group of users.

Thanks,

Divya

1 Accepted Solution

Avatar

Correct answer by
Level 10

Normally,

headers and footers will be part of your template components and will not have 'dialog' so that authors cannot edit that component.

As Scott mentioned, you can follow the link for best practice of developing the same.

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

Normally,

headers and footers will be part of your template components and will not have 'dialog' so that authors cannot edit that component.

As Scott mentioned, you can follow the link for best practice of developing the same.

Avatar

Level 10

" create global header and footer"

You are creating your headers and footers in separate JSPs right. ,Then you are pulling them into pages using cq:include:

<%@include file="/libs/foundation/global.jsp"%><%
%><%@page session="false" contentType="text/html; charset=utf-8" %><%
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<cq:include script="head.jsp"/>
<cq:include script="body.jsp"/>
</html>

This is the recommended way.  See http://docs.adobe.com/docs/en/aem/6-0/develop/the-basics/website.html