Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Vanilla for the blind
Hi all,
I am a developer of games for the blind, and being a blind person myself I have been looking for a very simple and powerful forum system for my website that my blind clients could use with minimal fuss.
I think Vanilla is the answer from what I can tell so far.
Most forum software is chock full of links and graphics that the blind person, using a screenreader just doesn't have need of.
I have set up Vanilla on my server, and it is working quite well, except for two things:
1. It seems the users have to select remember me each time they log in, or they aren't properly signed in.
2. Is it possible to get rid of the statistics shown with each discussion, such as last post, created by and all that? The less links we have to go through, the better, as a screenreader has to take in everything in a linear fashion, and this information isn't really necessary for us.
Personally, I think with a little tweaking, Vanilla could easily become the new standard for forums in the blind community, as it is very close to being just right for us as is.
Thanks much for any help, and feel free to email me or MSN off list at:
che@tridigitalbb.com
Thanks for your time,
Che
0
This discussion has been closed.
Comments
1. change the function call in themes/people_signing_form_nopostback.php:
ForceIncomingBool('RememberMe', 0)
to this:ForceIncomingBool('RememberMe', 1)
and the checkbox will automatically be selected.2. simply remove whatever you don't want displayed in themes/discussion.php. for instance, deleting the following will show only the discussion title: ...you could also hide things with css, but if you're never going to use it anyway you might as well save yourself the bandwidth
if
statement that checks the preference into anif not
.Another factor could be that the extension hides the fields with CSS, so if some screen readers still read them, you would be better off changing the theme file like SirNot recommended.
Big/small input resizes the comment text box, and it comes from lines 33 and 34 of themes/comment_form.php
To keep 'remember me' remembering you, don't sign out. Just close the browser and you will already be signed in next time you visit.
Off-Topic: Shouldn't the HtmlFormatter really be the HTMLFormatter, and shouldn't the radio box be labelled HTML not Html?