? No Code Attached Yet a11y
avatar WM-Loose
WM-Loose
14 Feb 2023

Steps to reproduce the issue

  1. Enable accessibility features an look on small display
    1
  • What version of Joomla were you using?
    4.2.27

Additional comments

Is it possible to choose to hide the accessibility features on medium and small displays?
Didn't find a setting in the plugin or is this not taken into account at all?

It is rather annoying on small displays such as smartphones and cannot be hidden.
Was this option forgotten in the plugin?

avatar WM-Loose WM-Loose - open - 14 Feb 2023
avatar joomla-cms-bot joomla-cms-bot - change - 14 Feb 2023
Labels Added: No Code Attached Yet a11y
avatar joomla-cms-bot joomla-cms-bot - labeled - 14 Feb 2023
avatar sandewt
sandewt - comment - 14 Feb 2023

Related to: #39161 and #39615


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/39860.

avatar sandewt
sandewt - comment - 14 Feb 2023

Is it possible to choose to hide the accessibility features on medium and small displays?
Didn't find a setting in the plugin or is this not taken into account at all?

This requires an adjustment in the .js code, as far as I can tell right now.

It is rather annoying on small displays such as smartphones and cannot be hidden.
Was this option forgotten in the plugin?

This is possible to modify some code in the plugin. Here's a simple setup. But that is of no use to you now.

public function onAfterRender()
{
	// Check if mobile
	if (Factory::getApplication()->client->mobile) {
		return;
	}
}
avatar ChristineWk
ChristineWk - comment - 14 Feb 2023

@sandewt

The specified issues are open, but concern other topics, I think ...
But Thanks for your interest!


This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/39860.

avatar Hackwar Hackwar - change - 22 Feb 2023
Labels Added: ?
avatar Hackwar Hackwar - labeled - 22 Feb 2023
avatar Quy
Quy - comment - 7 Apr 2024
avatar brianteeman
brianteeman - comment - 7 Apr 2024

Not something I would be prepared to add to the plugin as I consider it bad practice. However the new version will (not implemented yet) allow custom css so you could do it if you really want to.

Add a Comment

Login with GitHub to post a comment