How do I hide the Quick Publish and Manage Publication buttons from DAM UI | Community
Skip to main content
akshat_jain09
Level 2
March 27, 2019
Solved

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

  • March 27, 2019
  • 3 replies
  • 5632 views

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.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Hemant_arora

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

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

3 replies

Hemant_arora
Hemant_aroraAccepted solution
Level 8
March 27, 2019

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

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

akshat_jain09
Level 2
April 1, 2019

Thanks Hemant

This worked.

Thanks a lot for your help again.

cquser1
Level 7
June 10, 2019

Nice one.