Option to hide Print and Download buttons in the toolbar

We would like the option to allow or restrict users from downloading the file. Ie they could view but not download and save

1 Like

Hi there, @Alicia_Szerszyn :wave:

I cannot but agree that it would be great to have this option in the settings. We’ll try to consider this opportunity in the future :slightly_smiling_face:

As for now, you are very welcome to use this code to hide the Download and Print buttons:

.toolbar .dropup.widSettings li:nth-child(4),
.toolbar .dropup.widSettings li:nth-child(5) {
  display: none !important;
}

The code should be added to the Custom CSS field on the Design tab of your widget’s settings :slightly_smiling_face:

Thank you so much Max, this is very helpful. I have just used it for our employee handbook and it worked.

2 Likes

Is there a way to remove the download option from Flipbooks’ menu? I have some ebooks that I don’t want people to be able to download.

I appreciate any help you can provide.

Hi there, @Juan_Perez1 :wave:

There is no such an option in the settings, but we already have a request for this on the Wishlist. I’ve moved your comment to the related thread, where we’ll keep you updated :slightly_smiling_face:

In the meantime, you are very welcome to use this code in the Custom CSS field on the Design tab of your widget’s settings:

.toolbar .dropup.widSettings li:nth-child(5) {
  display: none !important;