Hi all,I am working on a project that requires implementing the DeepL translations APIs to perform translation of content. We have the by default microsoft translator integrated as of now but are looking to implement DeepL as it suits our usecase.Have any of you implemented custom translation connec...
Hi @AliSyed1 What you can do for this is create a Sling Event Handler and bind it to replication event on publish.This will get called every time a page is replicated to the publisher.Here you can write the logic to modify the page replicated as you please:Here is sample code of how you can register...
Hi @AliSyed1 The publish button is replication the pages internally.If you want to use the same functionality in your own code, you can create a servlet, event handler, or sling job based on your use case for replication functionality.Go over here in the AEMaaCS documentation :https://experienceleag...
No @ArindamPatra15 If you want "/" to land on the respective locale home page path, then you would need to write rewrite rule for all the locales.If you want the user to land on a global locale page for "/" regardless of locale.Then just one rule should do the job.
@Ankan_Ghosh For your above usecase , you can assign the replication of assets task from your Sling Event Handler to a Sling JobThe job returns a status of the job on completion. That way you can check if the replication operation was carried out successfully. Also as @arunpatidar mentioned, you can...
Yes @ArindamPatra15 You can achieve this using rewrite rules in dispatcherBelow is the rules to redirect "/" to respective home page based on country code http header.RewriteCond %{REQUEST_URI} ^/$
RewriteCond %{HTTP_HOST} ^(projectname)(.*)\.com$
RewriteCond %{HTTP:X-country-code} (us)
RewriteRule...
Hi @Rajumuddana If you are deploying via code, you can remove jcr:created date from the content xml in code and use mode="merge"<filter root="/content/dam/abc/magazine-archive-folder" mode="merge">
Hi @ABid2 As you have taken reference of below blog post for show hide.https://blog.3sharecorp.com/show-and-hide-dialog-fields-based-on-any-field-type Have you made sure the script added for the show hide logic is also loading on component dialog load?The script present in above blog, should be part...
Hi @Aaron_Dempwolff I think as @AMANATH_ULLAH highlighted, using Dispatcher Rewrite rules, you can achieve above use case but only on dispatcher.If you want it to work internally in AEM and other environments , the best solution would be to use sling mappinghttp://[host]:[port]/system/console/confi...