Hi @bartek_887 - Could it be possible that the following events might have occurred in sequence:1. First time you enabled TTL, it cached the file with empty headers, as your /headers section is empty and then the subsequent requests also received the same cached header file. See the below from the d...
Hi @rajashekharreddy0707 , Refer to https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/implementing/using-cloud-manager/managing-code/working-with-multiple-source-git-repositories.html?lang=en# It has a sample jenkins job that works for pushing code to adobe git.You can...
Hi @RamTejaReddy , Can you try changing the lines ProxyPass "http://xxx/test-one" ProxyPassReverse "http://xxx/test-one"to ProxyPass "/" "http://xxx/" ProxyPassReverse "/" "http://xxx/"Since your location is already set to "/test-one", thi...
Hi @ajoshi84 , Refer to https://bimmisoi.blogspot.com/2020/08/colorful-multifields-in-aem.html for adding colours to the nested multi fields.For Add button label, I am afraid there is no OOTB way; but you can extend the above solution to write a custom javascript and modify the button labels using t...
Hi @webdev91 , To keep it simple enough,1. For REST API consumption - you can use the HTTPClients class to generate an HTTP Client instance and you wouldn't need any external dependency, as these are part of uber jar.2. To manage credentials across different environments - Can create a custom OSGI ...
Hi @manikanthar1295 , Excluding a clientlib from a component that is already included in a template is not possible. Instead, you can load clientlib1 in the component and have clientlib2,clientlib3 at the template level. Thanks,Fani
Hi @mudaliar847906 - The variable names in data-sly-use and data-sly-call need to be of same case. They are case sensitive.Either change the first line to data-sly-use.clientLib OR update the second line to clientlib.css Thanks,Fani
Hi @AD-Engineer - You can follow the same approach as in https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/get-page-description-from-page-url/td-p/423955 The response of .json call with contain the page name in the field jcr:title, pageTitle based on context of usage. Thanks,...
Hi @AD-Engineer - I assume, you are referring to the description stored on the page in jcr:content node.If yes, you can retrieve it in javascript by accessing the path over HTTP or Ajax call in the format %page_path%/jcr:content.json.Ex: /content/we-retail/language-masters/en/men/jcr:content.json fo...