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
Solved! Go to Solution.
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
" 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
Views
Replies
Total Likes