Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
wiki:documentation [2025/06/01 02:30] – [Snippets and Templates] scumsuck | wiki:documentation [2025/08/11 22:50] (current) – [Discussion] scumsuck | ||
---|---|---|---|
Line 61: | Line 61: | ||
Avatars may be uploaded after making a comment by making a Gravatar account. | Avatars may be uploaded after making a comment by making a Gravatar account. | ||
+ | ==== Discussion ==== | ||
+ | The [[https:// | ||
+ | |||
+ | The default input fields are | ||
+ | - Real Name | ||
+ | |||
+ | - Website | ||
+ | - Comment | ||
+ | Those fields are hard-coded, with no configuration options in the server-side admin panel. | ||
+ | |||
+ | This code hides "Real Name" and makes it so screen readers don't read it. | ||
+ | |||
+ | < | ||
+ | .comment_name .block span { | ||
+ | font-size: 0; | ||
+ | visibility: hidden; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | This code replaces the text with " | ||
+ | |||
+ | < | ||
+ | .comment_name .block span::after { | ||
+ | content: ' | ||
+ | font-size: 18px; | ||
+ | visibility: visible; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Supposedly entering your e-mail allows you to get notifications for comments, but I haven' | ||
==== Styling ==== | ==== Styling ==== | ||
Dokuwiki has a [[https:// | Dokuwiki has a [[https:// |