cq5 - Personalization in AEM 6.1 -


i've followed below mentioned youtube link creation of personalization . once i've created demo page in geometrixx site , put content, don't see option target content on right click of content. please let me know how can that?

https://www.youtube.com/watch?v=hwxmaqcrmeu

just fyi - aem 6.1

also, have followed below mentioned adobe documentation. in teaser creation section, create new page using "teaser page template" don't see template in local. can see "experience template". let me know how can i've template.

https://docs.adobe.com/docs/en/aem/6-1/author/personalization/campaigns/teasers-and-strategies.html

as mentioned using aem6.1, making assumption using sightly markup (not jsp) , touchui interface rather classicui. if not...you should be!! :)

in head include data-sly-include="/libs/cq/cloudserviceconfigs/components/servicelibs/servicelibs.jsp" pick target cloud service configuration.

inside top of body include data-sly-resource="${ @path='clientcontext', resourcetype='cq/personalization/components/clientcontext'}" add targeting mode client context menu

and before closing body tag include data-sly-resource="${ @path='cloudservices', resourcetype='cq/cloudserviceconfigs/components/servicecomponents'}" close cloud services config

<html lang="en" data-sly-use.clientlib="${'/libs/granite/sightly/templates/clientlib.html'}">>  <head data-sly-use.head="head.js"            data-sly-use.headlibrenderer="headlibs.html"            data-sly-use.clientlib="${'/libs/granite/sightly/templates/clientlib.html'}">        <!-- other client libs/css  etc -->       <sly data-sly-include="/libs/cq/cloudserviceconfigs/components/servicelibs/servicelibs.jsp" />  </head>      <body>    <sly data-sly-resource="${ @path='clientcontext', resourcetype='cq/personalization/components/clientcontext'}"  />        <!-- body contents -->      <sly data-sly-resource="${ @path='cloudservices', resourcetype='cq/cloudserviceconfigs/components/servicecomponents'}" />  </body>  </html>

just fyi....teasers old terminology (pre 6.1) ...use experience template.


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -