Hi, When adding a field to the "Edit Tag" wizard in AEM via the specified path, make sure you also update the corresponding backend code to persist the value of the "Tag Color" field. This ensures that the assigned value is stored and retrieved correctly when reopening the "edit tag" dialog.
Hi , Please refer to docs[1] & [2] [1]https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/implementing/developing/generating-access-tokens-for-server-side-apis.html?lang=en [2]https://experienceleague.adobe.com/docs/experience-manager-learn/getting-started-with-aem-headl...
Hi, To create a custom workflow report in AEM, implement a custom workflow launcher and workflow step to capture relevant workflow details, and develop a custom report component to generate the report based on specified start and end dates.
Hi, To incorporate React components into specific parts of your non-SPA AEM website, you can consider the following options:AEM Editable Templates: Create an AEM template with editable areas where you can include React components using server-side rendering techniques.AEM Content Fragments: Create C...
Hi, To block requests for URLs ending with ".json" on the Dispatcher, add the following rule in the dispatcher.any file: / {/type "deny"/url "*.json"} Restart the Dispatcher service for the changes to take effect.
Hi, The specific features you mentioned (_assetTransform and _dynamicurl) might not be available in that version. These features are typically introduced in newer versions of AEM.
Hi, I hope the following helps:To prevent selecting a past time in the "Publish Later" field:Create a custom validator class.Implement the validation logic to check if the selected time is in the past.Register the custom validator using an OSGi configuration.Apply the validation to the "Publish Late...
Hi, To update ACS Commons from version 5.3.4 to 6.0.0 and ensure a clean installation:Update the ACS Commons dependency in your project's pom.xml file with the new version (6.0.0).Clean your local Maven repository with the command: mvn clean install -U.Manually uninstall the old ACS Commons packages...
In Adobe Experience Manager (AEM) unit tests, you can create a "dummy" request with specific headers by using the MockSlingHttpServletRequest class and its addHeader method. Here's an example: import org.apache.sling.testing.mock.sling.servlet.MockSlingHttpServletRequest;MockSlingHttpServletRequest ...