Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

How do I hide the Quick Publish and Manage Publication buttons from DAM UI

Avatar

Level 2

I have a requirement to enable publication of assets through workflow only. Hence I want to hide the OOTB buttons of 'Quick Publish' and 'Manage Publication' from the DAM UI. I tried removing the replication permissions for the user groups but ghat revokes the ability to publish through workflow also. Can someone please suggest a way to hide these buttons? Maybe through UI.

1 Accepted Solution

Avatar

Correct answer by
Level 9

for asset details page : overlay /libs/dam/gui/content/assetdetails/jcr:content/actions/quickpublish and add property(boolean) granite:hidden= true

1719726_pastedImage_0.png

similarly for assets.html : overlay /libs/dam/gui/content/assets/jcr:content/actions/selection/quickpublish and add property(boolean) granite:hidden= true

same can be done for the manage publication button

View solution in original post

3 Replies

Avatar

Correct answer by
Level 9

for asset details page : overlay /libs/dam/gui/content/assetdetails/jcr:content/actions/quickpublish and add property(boolean) granite:hidden= true

1719726_pastedImage_0.png

similarly for assets.html : overlay /libs/dam/gui/content/assets/jcr:content/actions/selection/quickpublish and add property(boolean) granite:hidden= true

same can be done for the manage publication button

Avatar

Level 2

Thanks Hemant

This worked.

Thanks a lot for your help again.