この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
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
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
" 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
表示
返信
いいね!の合計