Hi, Sandeep.So making it "insertable" has solved the issue, right?Out of curious: if you keep insert, but remove copymove, would it still work? Or, in the end, do you need both of them?Regards,Daniel.
Yes. I believe we are on the same page :-)Here, for example, we've developed a custom solution using Amazon CloudSearch:some preprocessors index the page content (I think this could be done in a Replication Agent instead);the page templates and components include a custom client library;this client ...
Hi, Philip.Sorry, but I couldn't follow you...As far as I've understood, the recommend solution is to use a 3rd party service/platform to index AEM content. This way your website (I mean its client side) would hit that service/platform to search for a specific content instead of hitting the publish ...
Hi, Sandeep.Is this related to the default value of cq:actions for cq:EditConfig?Does adding copymove to cq:actions help you in any way?http://labs.6dglobal.com/blog/2014-01-08/the-great-and-powerful-cq-editconfig/Regards,Daniel.
@Conexio Group, Sightly is smart enough to figure out which context to use, most of the time:HTL Display ContextSo, for regular attributes, I wouldn't add anything.Regards,Daniel.
Hi.I'm not sure that is possible to directly invoke a .jsp. After all, Sling is a content centric webapp framework.I think the Sling POST Servlet is trying to modify your jsp (a nt:file) instead of interpreting/running it.Have you tried to create a resource and POST to it? Or maybe POST directly to ...
Hi.Do you mean how to hide the tag if seoProps.description is null/empty?Have you tried<meta data-sly-test="${seoProps.description}" name="description" content="${seoProps.description}" />?HTL Test StatementRegards,Daniel.