Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Ravi_Pampana
Ravi_Pampana
Online

Badges

Badges
33

Accepted Solutions

Accepted Solutions
113

Likes Received

Likes Received
387

Posts

Posts
375

Discussions

Discussions
104

Questions

Questions
272

Ideas

Ideas
2

Blog Posts

Blog Posts
2
Top badges earned by Ravi_Pampana
Customize the badges you want to showcase on your profile
Re: Dynamic Media Scene7 URL - Adobe Experience Manager 10-05-2022
Hi,We can find the image AEM path in Dynamic Media (replace the account with /content/dam) by selecting the image. Or we can add the crx/de image path to the component within data attribute so that it can be easily accessible without going to Dynamic Media Scene 7 server.

Views

183

Likes

2

Replies

0
Re: How to get Url links from master copy to live copy - Adobe Experience Manager 08-05-2022
Hi, Live copy will have reference update Action which will update the references, we can create custom rollout and remove referenceUpdate action if we don't want the links to be updated in the live copy page. Refer: https://experienceleague.adobe.com/docs/experience-manager-65/administering/introduction/msm-sync.html?lang=en

Views

141

Like

1

Replies

0
Re: AEM integration with WEBP - Adobe Experience Manager 04-05-2022
Hi, If you are using Dynamic Media Scene7, then you can enable smart imaging feature with the help Adobe support. https://experienceleague.adobe.com/docs/experience-manager-64/assets/dynamic/imaging-faq.html?lang=en Smart imaging will able to server jpg/png images in webp format for supported browsers automatically, it also checks converting the image to webp is larger than original then serves the image in original instead of blindly converting to webp

Views

127

Like

1

Replies

0
Re: AEM Assets duplication detection through api upload - Adobe Experience Manager 04-05-2022
Hi, You can enable the below config for duplicate asset detentionhttps://experienceleague.adobe.com/docs/experience-manager-64/assets/managing/duplicate-detection.html?lang=en Once enabled, when uploading same asset, we will get error like below  

Views

203

Likes

2

Replies

2
Re: Ability to map misspellings to other words - Adobe Experience Manager 03-05-2022
Hi, I think you need to handle this via custom javascript, where you can add some mapping of the misspelled words with the correct works and if search term matches with the list of misspelled words you can show the correct word. The list can be updated eventually on new terms which you figure out by user search terms.

Views

92

Likes

2

Replies

0
Re: Dynamic value for redirect page property - Adobe Experience Manager 03-05-2022
Hi,We can achieve this using event listener when jcr:content node is created/updated event can be triggered Ex: https://aemhints.com/2020/11/08/event-listener-in-aem-6-5/

Views

130

Like

1

Replies

2
Re: AEM Grid is not working properly + SP12 - Adobe Experience Manager 02-05-2022
Hi, You can overwrite the out of the box style sheet and update the width as needed or you can add !important to custom style, so that out of the box style will be overwritten width: 100% !important or add more levels to the css like adding ".container.responsivegrid" more levels will be given preference while adding styles.

Views

110

Like

1

Replies

1
Re: Need to get page property from root page - Adobe Experience Manager 02-05-2022
Hi, Try using context aware configuration, using this you can set the common values at parent page and same can be read in all the child pages. These are easy to update on the fly without any code changes. https://experienceleague.adobe.com/docs/experience-manager-core-components/using/developing/context-aware-configs.html?lang=en

Views

140

Like

1

Replies

1
Re: Restrict Page name to be lower-case - Adobe Experience Manager 29-04-2022
Hi, I have achieved this by using validator , below code will convert caps into lower case and also converts _ into -. You can add additional logic as per your need $(window).adaptTo("foundation-registry").register("foundation.validation.validator", { selector: ".pageName", validate: function(el) { $(".pageName").val($(".pageName").val().replace(/_/g, '-').replace(/-{2,}/g, '-').toLowerCase()); }});

Views

150

Likes

2

Replies

0
Re: Passing query parameter from the URL into the javascript value - Adobe Experience Manager 29-04-2022
Hi, You can try below code and from request you can read the request, we can read the query string Model(adaptables = {SlingHttpServletRequest.class, Resource.class}, defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL) public class AdaptationModel { @SlingObject private SlingHttpServletRequest request; Also you can check below link for reading the query string in sightly https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/access-request-query-string-parameter-in-s...

Views

174

Like

1

Replies

0