Hi, Seems you want to move the meta properties from master to translation page without sending them to localization process. In that case we can achieve this with custom implementation. Create a service which will show the page properties of the selected page and provide checkbox for authors to sel...
Hi, We can use Java-Use api or Javascript-use api to read json from the node and display in component html. You can refer http://aemcorner.blogspot.com/2015/09/render-json-data-using-sightly-custom.html for example.
Hi, Try "wcmmode.preview" but when we change from edit mode to preview there wont be page refresh and this will not work as intended. You need to do a page refresh on selecting preview mode. Hope this helps!
When we add absolute image url with preset having $, the css file will not load and throw exception from OOB code (com/adobe/granite/ui/clientlibs/script/Utils.java). But by escaping $ we can overcome above issue and load the css file with preset correctly. .load { background:url("https://scen...
Hi, We can handle easily at dispatcher level by passing R=301 to the redirect rules. Ex:RewriteRule (.*)$ https://%{SERVER_NAME}$1/ [R=301,QSA,L]RewriteRule ^/test.html /test.html#anchor [NE,R=301,L]
You can read the values stored in the jcr and using pageManager API, we can create page and add values in as required. First it will be helpful if you come up with the mapping of fields and where/how it should stored under the page. Some of them will go to jcr:content and some go to a component. On...
Hi, Check below code to get the image extension from image resource Image image = new Image(resource); // resource - image resourceimage.getExtension(); For more details, please referhttps://helpx.adobe.com/experience-manager/6-3/sites/developing/using/reference-materials/javadoc/com/day/cq/commons/...