Posted by Corsham Photographic Club on 30/03/24 23:03
I have created an 'Our Files' page on the site where files of interest to club members can be stored. However there seems to be a facility added to download files as a zip file that is available to anyone visiting the site. This is not what we want. I cannot see how to remove it or restrict access. Can this be achieved please?
Posted by Joe Oldak on 09/04/24 17:25
There's no way to completely remove the "Download an archive..." link from the page, but you can hide it with a bit of custom CSS.
If you go to the theme options and in the Raw Header HTML add something like this:
<style>
.download-archive {
display: none;
}
</style>
Good luck!
Joe