Avoid/forbid "Click here" links

General discussion of development ideas and the approaches taken in the 3.x branch of phpBB. The current feature release of phpBB 3 is 3.3/Proteus.
Forum rules
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.

If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
User avatar
nickvergessen
Former Team Member
Posts: 733
Joined: Sun Oct 07, 2007 11:54 am
Location: Stuttgart, Germany
Contact:

Avoid/forbid "Click here" links

Post by nickvergessen »

phpBB uses "click here" very often for link descriptions. This is bad for screenreads and and also refers to a mouse being used, which is being less the case when using your fancy touch displayes nower days. If you need some more reading information:
http://www.smashingmagazine.com/2012/06 ... lick-here/
http://www.w3.org/QA/Tips/noClickHere
http://www.w3.org/TR/WCAG10-HTML-TECHS/#link-text

So maybe we should make it a "coding guideline" that new links must not use "click here" but be descriptive instead.
Opinions?
Member of the Development-TeamNo Support via PM

User avatar
DavidIQ
Customisations Team Leader
Customisations Team Leader
Posts: 1904
Joined: Thu Mar 02, 2006 4:29 pm
Location: Earth
Contact:

Re: Avoid/forbid "Click here" links

Post by DavidIQ »

Agreed but to be clear we are not talking about or including posted links in topics are we?
Image

User avatar
nickvergessen
Former Team Member
Posts: 733
Joined: Sun Oct 07, 2007 11:54 am
Location: Stuttgart, Germany
Contact:

Re: Avoid/forbid "Click here" links

Post by nickvergessen »

No, just phpBB generated links, like:

Code: Select all

	'STYLE_INSTALLED_EDIT_DETAILS'	=> '<a href="%s">Click here</a> to edit style details or to change default style.',
	'STYLE_INSTALLED_RETURN_STYLES'	=> '<a href="%s">Click here</a> to return to installed styles list.',
	'STYLE_INSTALLED_RETURN_UNINSTALLED'	=> '<a href="%s">Click here</a> to install more styles.',
Member of the Development-TeamNo Support via PM

User avatar
MattF
Extension Customisations
Extension Customisations
Posts: 675
Joined: Mon Mar 08, 2010 9:18 am

Re: Avoid/forbid "Click here" links

Post by MattF »

How 'bout "call, click, or come in." No...wait, that won't work...

How 'bout, "Follow this link"
Has an irascible disposition.

User avatar
nickvergessen
Former Team Member
Posts: 733
Joined: Sun Oct 07, 2007 11:54 am
Location: Stuttgart, Germany
Contact:

Re: Avoid/forbid "Click here" links

Post by nickvergessen »

How 'bout:

Code: Select all

	'STYLE_INSTALLED_RETURN_STYLES'	=> 'Return to <a href="%s">installed styles list</a>.',
	'STYLE_INSTALLED_RETURN_UNINSTALLED'	=> 'Install <a href="%s">more styles</a>',
Member of the Development-TeamNo Support via PM

User avatar
Master_Cylinder
Registered User
Posts: 361
Joined: Wed Jul 31, 2013 9:54 pm

Re: Avoid/forbid "Click here" links

Post by Master_Cylinder »

Does it really matter? Most people know what "click" means even if it's done with a finger on a touch screen.
These kids today...
Buy them books, send them to school and what do they do?

They eat the paste. :lol:

User avatar
nickvergessen
Former Team Member
Posts: 733
Joined: Sun Oct 07, 2007 11:54 am
Location: Stuttgart, Germany
Contact:

Re: Avoid/forbid "Click here" links

Post by nickvergessen »

It matters if you are blind and sit in front of a screenreader which lists all links first and it list ten times click here
Member of the Development-TeamNo Support via PM

User avatar
Master_Cylinder
Registered User
Posts: 361
Joined: Wed Jul 31, 2013 9:54 pm

Re: Avoid/forbid "Click here" links

Post by Master_Cylinder »

nickvergessen wrote:It matters if you are blind and sit in front of a screenreader which lists all links first and it list ten times click here
But changing the name to something other than "click" will still be read repeatedly by the screenreader. I think it's just semantics...
These kids today...
Buy them books, send them to school and what do they do?

They eat the paste. :lol:

User avatar
nickvergessen
Former Team Member
Posts: 733
Joined: Sun Oct 07, 2007 11:54 am
Location: Stuttgart, Germany
Contact:

Re: Avoid/forbid "Click here" links

Post by nickvergessen »

Master_Cylinder wrote:
nickvergessen wrote:It matters if you are blind and sit in front of a screenreader which lists all links first and it list ten times click here
But changing the name to something other than "click" will still be read repeatedly by the screenreader. I think it's just semantics...
Please read the samples in this topic as well as the links in the first post, before continuing to discuss...
Member of the Development-TeamNo Support via PM

User avatar
Master_Cylinder
Registered User
Posts: 361
Joined: Wed Jul 31, 2013 9:54 pm

Re: Avoid/forbid "Click here" links

Post by Master_Cylinder »

:roll: I did read them.

Is
"return"
"install"
"uninstall"
"install"
"uninstall"
"install"
"uninstall"
Any better than
"click here"
"click here"
"click here"
"click here"
"click here"
for the blind? Do we need to develop for the blind?

While it *IS*, absolutely, true that "click" refers to mouse mechanics, it's still understood whether it's a touchscreen or not.

On the other hand, since it seems to just be semantics, it really won't matter if it's changed either; the links will still be there so I'm neutral.
These kids today...
Buy them books, send them to school and what do they do?

They eat the paste. :lol:

Post Reply