Click here to edit contents of this page.
Click here to toggle editing of individual sections of the page (if possible). Watch headings for an "edit" link when available.
Append content without editing the whole page source.
Check out how this page has evolved in the past.
If you want to discuss contents of this page - this is the easiest way to do it.
View and manage file attachments for this page.
A few useful tools to manage this Site.
See pages that link to and include this page.
Change the name (also URL address, possibly the category) of the page.
View wiki source for this page without editing.
View/set parent page (used for creating breadcrumbs and structured layout).
Notify administrators if there is objectionable content in this page.
Something does not work as expected? Find out what you can do.
General Wikidot.com documentation and help section.
Wikidot.com Terms of Service - what you can, what you should not etc.
Wikidot.com Privacy Policy.
Yes, this has been the reason I never use the Files module… it's a crappy bug.
I think I created a bug for this before, and Wikidot has said that it won't be fixed because that module is being replaced by the ListFiles module instead.
I'm hoping that is reasonably soon :)
~ Leiger - Wikidot Community Admin - Volunteer
Wikidot: Official Documentation | Wikidot Discord server | NEW: Wikiroo, backup tool (in development)
Done, please test if this works.
Piotr Gabryjeluk
visit my blog
To make this perfect, I need to hide the "Manage attachments" link. The problem is that the name of the class that surrounds the files module isn't the same every time - it includes the current page ID number as well. So I can't include that in my CSS ;-(
Luckily, I learnt a little trick in my web development class a few weeks ago, to get what I want. So anyone that wants to hide the "Manage attachments" link can do it like this:
This means: If there is a "table" element with the class name "page-files", followed directly after by a "div", followed directly after by "script", followed directly after by "p", then affect the final p. (and in this case I hid it).
I could have just done script + p but I wanted to include as many levels as possible, to make sure I didn't accidentally hide something that has nothing to do with the Files module.
~ Leiger - Wikidot Community Admin - Volunteer
Wikidot: Official Documentation | Wikidot Discord server | NEW: Wikiroo, backup tool (in development)
To make this "wish" work crossbrowser (I doubt IE supports "+"-selectors) we can make a class for "manage attachments" link, so that you could hide it more easily.
Piotr Gabryjeluk
visit my blog
Yes, that would be perfect!
~ Leiger - Wikidot Community Admin - Volunteer
Wikidot: Official Documentation | Wikidot Discord server | NEW: Wikiroo, backup tool (in development)
<p> surrounding the manage attachments link has now a class, so you can hide it more easily.
Piotr Gabryjeluk
visit my blog
And that class is .manage-attachments-link. I'll state the obvious for those who may need clarification. To hide that link, add this to your custom CSS:
To use it selectively on single pages, use the css module:
-Ed
Community Admin
In looking at this closer, depending on how much or little you want to allow the user to see, it may be desirable to hide the #action-area at the bottom of the page too (especially if you're hiding the manage attachments link). To do this, you need to add the !important option:
Community Admin
Yes, but if you do that then isn't it impossible to upload files?
Basically, in most cases I would still like users to be able to upload files, but the link would be in a custom location that is completely separate from the list of files.
Or, I want to only show the link to logged-in users by putting it inside a ListUsers module. (using the [[button files …]] syntax)
~ Leiger - Wikidot Community Admin - Volunteer
Wikidot: Official Documentation | Wikidot Discord server | NEW: Wikiroo, backup tool (in development)
Thanks Gabrys! ;-)
~ Leiger - Wikidot Community Admin - Volunteer
Wikidot: Official Documentation | Wikidot Discord server | NEW: Wikiroo, backup tool (in development)