SlideShare a Scribd company logo
1 of 39
Download to read offline
Making Popular WordPress
Plugins More Accessible
Claire Brotherton
WordCamp Edinburgh, July 2017
@abrightclearweb
Why Does Plugin Accessibility
Matter?
โ€ข WordPress is used by 28.3% of all websites โ€จ
โ€จ
(https://w3techs.com/technologies/details/cm-wordpress/all/
all)
โ€ข Over 51,000 plugins are available on WordPress.org
โ€ข 1 in 5 people in the UK have a disabilityโ€จ
โ€จ
(https://www.gov.uk/government/uploads/system/uploads/
attachment_data/๏ฌle/600465/family-resources-
survey-2015-16.pdf)
How To Test Plugins For
Accessibility?
โ€ข Keyboard (motor disability)
โ€ข Screen reader (visual impairment). Free ones are:
โ€ข NVDA (Windows) - best with Firefox โ€จ
https://www.nvaccess.org
โ€ข VoiceOver (Mac & iOS, built-in) - best with Safariโ€จ
If We Find Plugin Accessibility
Issues, How Can We Fix Them?
โ€ข Leave a message on WordPress.org forumsโ€จ
โ€ข Premium plugins: contact their supportโ€จ
โ€ข Use a plugin to improve the accessibility of the one we want
to useโ€จ
โ€ข Find alternative plugins without accessibility issues
What Is Keyboard Focus?
Which Are The Main
Focusable HTML Elements?
โ€ข Links <a>
โ€ข Form elements e.g. <input>
โ€ข Buttons <button>
โ€ข https://allyjs.io/data-tables/focusable.html
Making Other HTML
Elements Focusable
The tabindex value can allow for some interesting
behaviour.
โ€ข If given a value of "-1", the element can't be tabbed to but
focus can be given to the element programmatically
(using element.focus()).โ€จ
โ€ข If given a value of 0, the element can be focused via the
keyboard and falls into the tabbing flow of the document.โ€จ
โ€ข https://snook.ca/archives/accessibility_and_usability/
elements_focusable_with_tabindex
Visible Focus Styles
Visible Focus Styles
Mac users
- blue focus ring
VoiceOver users
- black border
Chrome User?
โ€ข Focus Indicator (Chrome extension)
โ€ข https://chrome.google.com/webstore/detail/focus-indicator/
heeoeadndnhebmfebjccbhmccmaoedlf
How To Navigate With The
Keyboard
โ€ข Tab key to go forwards
โ€ข Shift + Tab to go backwards
โ€ข Enter to click link/button
โ€ข Space to activate buttons /
check checkboxes
How To Navigate With The
Keyboard
โ€ข Arrow keys to navigate radioโ€จ
buttons
โ€ข Esc key to close dialogs
โ€ข If something is accessible via
keyboard, itโ€™s normally
accessible via a screen
reader too
LIGHTBOX
How Should An Accessible
Lightbox Work?
โ€ข The trigger to open the lightbox must get keyboard focus.
โ€ข There should be a warning that a new window will open.
โ€ข Focus must go to the lightbox when opened, and be visible.
โ€ข Lightbox image(s) must have alt text.
โ€ข Tabbing must cycle round the links within the lightbox until dismissed.
โ€ข Focus must return to the element on the page which the lightbox was
opened from.
โ€ข http://www.cool๏ฌelds.co.uk/2011/12/speci๏ฌcation-for-an-accessible-lightbox/
NextGEN Gallery
https://wordpress.org/plugins/nextgen-gallery/
Over 1 million active installs
NextGEN Gallery Demo (1)
Nextgen Gallery Test Results
(Keyboard)
โ€ข No instructions given that clicking on a thumbnail will open a larger image.
โ€ข The focus style on the thumbnails is very hard to see.
โ€ข Opens the lightbox but the focus remains in the window below. So tabbing
through I could return to an unexpected place.
โ€ข Canโ€™t focus on the lightbox X to close. Only the Esc key works.
โ€ข Arrow keys move the lightbox images forward/back - but is this obvious
to users?
NextGEN Gallery Demo (2)
NextGEN Gallery Test Results
(VoiceOver)
โ€ข Focus style is better thanks toVoiceOverโ€™s default style.
โ€ข We had the same issues with the focus not moving to the lightbox.
โ€ข VoiceOver read out the ๏ฌlename for most of the thumbnail images. Itโ€™s
not enough to add the alt text in WordPress Media Library - you must add it
in Next Gen Galleryโ€™s settings too.
โ€ข Image links should tell the user the destination of the link, so should read
something like โ€œOpen a panel with larger version of ๏ฌgure holding a bunch
of grapes in close-upโ€.
NextGEN Gallery Test Results
โ€ข The trigger to open the lightbox must get keyboard focus. โœ…
โ€ข There should be a warning that a new window will open. โŒ
โ€ข Focus must go to the lightbox when opened, and be visible. โŒ
โ€ข Lightbox image(s) must have alt text. โŒ
โ€ข Tabbing must cycle round the links within the lightbox until dismissed. โŒ
โ€ข Focus must return to the element on the page which the lightbox was
opened from. โŒ
What We Can Do To Fix
Lightbox Accessibility Issues?
โ€ข Add alt text to images (the NextGEN Gallery way) and use descriptive
๏ฌlenames.
โ€ข Raise issues with the pluginโ€™s developer on the WordPress.org forums.
โ€ข No suitable replacement plugin, unfortunately.
โ€ข Lity is an accessible lightbox but isnโ€™t in the form of a WordPress plugin. It
doesnโ€™t show multiple images.
โ€ข http://sorgalla.com/lity/
MODAL WINDOW
MailMunch
https://wordpress.org/plugins/mailmunch/
Over 20,000 active installs
MailMunch Demo
MailMunch Test Results
โ€ข Not keyboard accessible - focus remains behind the modal, on the page.
โ€ข Even the Esc key didnโ€™t work.
โ€ข No email subscribers for you!
Sumo
https://wordpress.org/plugins/sumome/
Over 100,000 active installs
Sumo Demo
Sumo Test Results
โ€ข The trigger to open the modal must get keyboard focus. โœ…
โ€ข There should be a warning that a new window will open. โŒ
โ€ข Focus must go to the modal when opened, and be visible. โœ…
โ€ข Tabbing must cycle round the links within the modal until dismissed. โŒ
โ€ข Focus must return to the element on the page which the modal was
opened from. โŒ
FORMS
How Should Accessible Forms
Work?
โ€ข All inputs should have a form label, and the label
should be associated with the form control via an id
attribute.
โ€ข Related form elements e.g. radio buttons or
checkboxes should be grouped in a <๏ฌeldset> with a
<legend>.
โ€ข Error messages should be highlighted. For screen
reader users it helps if the errors are listed above the
form.
Gravity Forms
http://www.gravityforms.com
Over A Million WordPress Sites Are Already Using Gravity Forms
Gravity Forms Demo
Fixing Gravity Forms (1)
โ€ข WCAG 2.0 form ๏ฌelds for Gravity Forms
โ€ข https://en-gb.wordpress.org/plugins/gravity-forms-wcag-20-form-๏ฌelds/
Fixing Gravity Forms (1)
Fixing Gravity Forms (2)
โ€ข Gravity Fieldset for Gravity Forms
โ€ข https://en-gb.wordpress.org/plugins/gravity-๏ฌeldset-for-gravity-forms/
Fixing Gravity Forms (2)
Gravity Forms + Plugins
โ€ข All inputs should have a form label, and the label should
be associated with the form control via an id attribute.
โœ…
โ€ข Related form elements e.g. radio buttons or checkboxes
should be grouped in a <๏ฌeldset> with a <legend>. โœ…
โ€ข Error messages should be highlighted. For screen reader
users it helps if the errors are listed above the form. โœ…
Summary
โ€ข Plugin developers have a responsibility to code their plugins
for everyone
โ€ข These plugins are used on millions of sites
โ€ข Accessible features are better coded in from the start, but
problems can be ๏ฌxed if you know how
โ€ข Accessible plugins = more accessible sites = better for all!
Thank You!
โ€ข www.abrightclearweb.com
โ€ข claire@abrightclearweb.com
โ€ข @abrightclearweb
Questions?

More Related Content

Recently uploaded

VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
singhpriety023
ย 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
ย 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
SUHANI PANDEY
ย 
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
ย 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
SUHANI PANDEY
ย 
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
ย 
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
SUHANI PANDEY
ย 
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRLLucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
imonikaupta
ย 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
SUHANI PANDEY
ย 
๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
nirzagarg
ย 
Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...
Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...
Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...
SUHANI PANDEY
ย 

Recently uploaded (20)

VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
ย 
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Pollachi 7001035870 Whatsapp Number, 24/07 Booking
ย 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
ย 
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
๐Ÿ“ฑDehradun Call Girls Service ๐Ÿ“ฑโ˜Ž๏ธ +91'905,3900,678 โ˜Ž๏ธ๐Ÿ“ฑ Call Girls In Dehradun ๐Ÿ“ฑ
ย 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
ย 
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service โ˜Ž๏ธ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
ย 
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
Wagholi & High Class Call Girls Pune Neha 8005736733 | 100% Gennuine High Cla...
ย 
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort ServiceCall Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
Call Girls in Prashant Vihar, Delhi ๐Ÿ’ฏ Call Us ๐Ÿ”9953056974 ๐Ÿ” Escort Service
ย 
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...Katraj ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For S...
Katraj ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For S...
ย 
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRLLucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
Lucknow โคCALL GIRL 88759*99948 โคCALL GIRLS IN Lucknow ESCORT SERVICEโคCALL GIRL
ย 
Microsoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftMicrosoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck Microsoft
ย 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
ย 
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
Call Girls Sangvi Call Me 7737669865 Budget Friendly No Advance BookingCall G...
ย 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
ย 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
ย 
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
ย 
๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
๐Ÿ’š๐Ÿ˜‹ Bilaspur Escort Service Call Girls, 9352852248 โ‚น5000 To 25K With AC๐Ÿ’š๐Ÿ˜‹
ย 
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
WhatsApp ๐Ÿ“ž 8448380779 โœ…Call Girls In Mamura Sector 66 ( Noida)
ย 
Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...
Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...
Yerawada ] Independent Escorts in Pune - Book 8005736733 Call Girls Available...
ย 
Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now โ˜Ž 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
ย 

Featured

Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
ย 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
Alireza Esmikhani
ย 

Featured (20)

AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
ย 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
ย 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
ย 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
ย 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
ย 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
ย 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
ย 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
ย 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
ย 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
ย 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
ย 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
ย 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
ย 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
ย 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
ย 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
ย 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
ย 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
ย 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
ย 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
ย 

Making Popular WordPress Plugins More Accessible

  • 1. Making Popular WordPress Plugins More Accessible Claire Brotherton WordCamp Edinburgh, July 2017 @abrightclearweb
  • 2. Why Does Plugin Accessibility Matter? โ€ข WordPress is used by 28.3% of all websites โ€จ โ€จ (https://w3techs.com/technologies/details/cm-wordpress/all/ all) โ€ข Over 51,000 plugins are available on WordPress.org โ€ข 1 in 5 people in the UK have a disabilityโ€จ โ€จ (https://www.gov.uk/government/uploads/system/uploads/ attachment_data/๏ฌle/600465/family-resources- survey-2015-16.pdf)
  • 3. How To Test Plugins For Accessibility? โ€ข Keyboard (motor disability) โ€ข Screen reader (visual impairment). Free ones are: โ€ข NVDA (Windows) - best with Firefox โ€จ https://www.nvaccess.org โ€ข VoiceOver (Mac & iOS, built-in) - best with Safariโ€จ
  • 4. If We Find Plugin Accessibility Issues, How Can We Fix Them? โ€ข Leave a message on WordPress.org forumsโ€จ โ€ข Premium plugins: contact their supportโ€จ โ€ข Use a plugin to improve the accessibility of the one we want to useโ€จ โ€ข Find alternative plugins without accessibility issues
  • 6. Which Are The Main Focusable HTML Elements? โ€ข Links <a> โ€ข Form elements e.g. <input> โ€ข Buttons <button> โ€ข https://allyjs.io/data-tables/focusable.html
  • 7. Making Other HTML Elements Focusable The tabindex value can allow for some interesting behaviour. โ€ข If given a value of "-1", the element can't be tabbed to but focus can be given to the element programmatically (using element.focus()).โ€จ โ€ข If given a value of 0, the element can be focused via the keyboard and falls into the tabbing flow of the document.โ€จ โ€ข https://snook.ca/archives/accessibility_and_usability/ elements_focusable_with_tabindex
  • 9. Visible Focus Styles Mac users - blue focus ring VoiceOver users - black border
  • 10. Chrome User? โ€ข Focus Indicator (Chrome extension) โ€ข https://chrome.google.com/webstore/detail/focus-indicator/ heeoeadndnhebmfebjccbhmccmaoedlf
  • 11. How To Navigate With The Keyboard โ€ข Tab key to go forwards โ€ข Shift + Tab to go backwards โ€ข Enter to click link/button โ€ข Space to activate buttons / check checkboxes
  • 12. How To Navigate With The Keyboard โ€ข Arrow keys to navigate radioโ€จ buttons โ€ข Esc key to close dialogs โ€ข If something is accessible via keyboard, itโ€™s normally accessible via a screen reader too
  • 14. How Should An Accessible Lightbox Work? โ€ข The trigger to open the lightbox must get keyboard focus. โ€ข There should be a warning that a new window will open. โ€ข Focus must go to the lightbox when opened, and be visible. โ€ข Lightbox image(s) must have alt text. โ€ข Tabbing must cycle round the links within the lightbox until dismissed. โ€ข Focus must return to the element on the page which the lightbox was opened from. โ€ข http://www.cool๏ฌelds.co.uk/2011/12/speci๏ฌcation-for-an-accessible-lightbox/
  • 17. Nextgen Gallery Test Results (Keyboard) โ€ข No instructions given that clicking on a thumbnail will open a larger image. โ€ข The focus style on the thumbnails is very hard to see. โ€ข Opens the lightbox but the focus remains in the window below. So tabbing through I could return to an unexpected place. โ€ข Canโ€™t focus on the lightbox X to close. Only the Esc key works. โ€ข Arrow keys move the lightbox images forward/back - but is this obvious to users?
  • 19. NextGEN Gallery Test Results (VoiceOver) โ€ข Focus style is better thanks toVoiceOverโ€™s default style. โ€ข We had the same issues with the focus not moving to the lightbox. โ€ข VoiceOver read out the ๏ฌlename for most of the thumbnail images. Itโ€™s not enough to add the alt text in WordPress Media Library - you must add it in Next Gen Galleryโ€™s settings too. โ€ข Image links should tell the user the destination of the link, so should read something like โ€œOpen a panel with larger version of ๏ฌgure holding a bunch of grapes in close-upโ€.
  • 20. NextGEN Gallery Test Results โ€ข The trigger to open the lightbox must get keyboard focus. โœ… โ€ข There should be a warning that a new window will open. โŒ โ€ข Focus must go to the lightbox when opened, and be visible. โŒ โ€ข Lightbox image(s) must have alt text. โŒ โ€ข Tabbing must cycle round the links within the lightbox until dismissed. โŒ โ€ข Focus must return to the element on the page which the lightbox was opened from. โŒ
  • 21. What We Can Do To Fix Lightbox Accessibility Issues? โ€ข Add alt text to images (the NextGEN Gallery way) and use descriptive ๏ฌlenames. โ€ข Raise issues with the pluginโ€™s developer on the WordPress.org forums. โ€ข No suitable replacement plugin, unfortunately. โ€ข Lity is an accessible lightbox but isnโ€™t in the form of a WordPress plugin. It doesnโ€™t show multiple images. โ€ข http://sorgalla.com/lity/
  • 25. MailMunch Test Results โ€ข Not keyboard accessible - focus remains behind the modal, on the page. โ€ข Even the Esc key didnโ€™t work. โ€ข No email subscribers for you!
  • 28. Sumo Test Results โ€ข The trigger to open the modal must get keyboard focus. โœ… โ€ข There should be a warning that a new window will open. โŒ โ€ข Focus must go to the modal when opened, and be visible. โœ… โ€ข Tabbing must cycle round the links within the modal until dismissed. โŒ โ€ข Focus must return to the element on the page which the modal was opened from. โŒ
  • 29. FORMS
  • 30. How Should Accessible Forms Work? โ€ข All inputs should have a form label, and the label should be associated with the form control via an id attribute. โ€ข Related form elements e.g. radio buttons or checkboxes should be grouped in a <๏ฌeldset> with a <legend>. โ€ข Error messages should be highlighted. For screen reader users it helps if the errors are listed above the form.
  • 31. Gravity Forms http://www.gravityforms.com Over A Million WordPress Sites Are Already Using Gravity Forms
  • 33. Fixing Gravity Forms (1) โ€ข WCAG 2.0 form ๏ฌelds for Gravity Forms โ€ข https://en-gb.wordpress.org/plugins/gravity-forms-wcag-20-form-๏ฌelds/
  • 35. Fixing Gravity Forms (2) โ€ข Gravity Fieldset for Gravity Forms โ€ข https://en-gb.wordpress.org/plugins/gravity-๏ฌeldset-for-gravity-forms/
  • 37. Gravity Forms + Plugins โ€ข All inputs should have a form label, and the label should be associated with the form control via an id attribute. โœ… โ€ข Related form elements e.g. radio buttons or checkboxes should be grouped in a <๏ฌeldset> with a <legend>. โœ… โ€ข Error messages should be highlighted. For screen reader users it helps if the errors are listed above the form. โœ…
  • 38. Summary โ€ข Plugin developers have a responsibility to code their plugins for everyone โ€ข These plugins are used on millions of sites โ€ข Accessible features are better coded in from the start, but problems can be ๏ฌxed if you know how โ€ข Accessible plugins = more accessible sites = better for all!
  • 39. Thank You! โ€ข www.abrightclearweb.com โ€ข claire@abrightclearweb.com โ€ข @abrightclearweb Questions?