mikemc2410
Forum Replies Created
-
Apparently one of the accessibility issues is that there are users that will turn off css and then the field is visible.
One recommendation is that the form field should also have a descriptive label that is similarly hidden, but clearly indicates to screen reader users that they should not enter anything in the field ie leave this field blank, this also resolves the issue when accessibility users turn off css.Hi, the web page is here https://www.disability-seating.co.uk/test/, the test page is http://wave.webaim.org/report#/https://www.disability-seating.co.uk/test/.
Its a hidden form element.
Mike
Hi, although the hidden field is only for internal use it still fails accessibility compliance checks, would you be able to label that field as well please.
Hi, sorry that does not work either, it also looks like an older solution with ‘bweb’ instead of ‘tifd’ that is shown in the latest documentation at here.
Just to confirm, I am using Feedzy RSS Feeds Lite version 3.0.9.
Regards
Mike McCormack
Hi, sorry, this is not resolved yet.
The following code to replace the hellip with read more link does not work,function tifd_feedzy_readmore( $content, $link, $feedURL ) { $content = str_replace( '[…]', '<a href="' . $link . '" target="_blank">' . __('Read more', 'yourTextDomain') . ' →</a>', $content ); return $content; } add_filter( 'feedzy_summary_output', 'tifd_feedzy_readmore', 9, 3 );The following code just to remove the hellip does not work,
function tifd_feedzy_remove_hellip( $content, $feedURL ) { $content = str_replace( ' […]', '', $content ); return $content; } add_filter( 'feedzy_summary_output', 'tifd_feedzy_remove_hellip', 9, 2 );The following code to add a read more link does work but there is still a hellip in place that is not required.
function tifd_feedzy_readmore( $content, $link, $feedURL ) { $content .= '<a href="' . $link . '" target="_blank">' . __('Read more', 'yourTextDomain') . ' →</a>'; return $content; } add_filter( 'feedzy_summary_output', 'tifd_feedzy_readmore', 9, 3 );Please can you give me working code to replace the hellip with a read more link.
Regards
Mike McCormack
Forum: Plugins
In reply to: [EventCalendar] Browser CompatablityHi, you can mark this as resolved, I’ve purchased WP Google Maps Pro and this plugin does not interfere with other plugins using a Google Map.
Thanks
Regards
Mike McCormackForum: Plugins
In reply to: [EventCalendar] Browser CompatablityHi, the problem is that I also have the WP Google Map Pro plugin installed, what happens then is that there are multiple calls to the Google Maps API, if I deactivate WP Google Map Pro plugin then the Events Calendar Maps works correctly.
Do you have a solution to this please apart from deactivating the WP Google Map Pro plugin.Regards
Mike McCormack
Forum: Plugins
In reply to: [EventCalendar] Browser CompatablityHi, I’m sorry but I really do not understand your explanation, the script you refer to is called by the events calendar and the link to chromestatus appears to refer to Android issues not PC browsers.
Are you able to be more specific in your explanation please.Regards
Mike McCormack
Forum: Plugins
In reply to: [EventCalendar] Browser CompatablityHi, I have found that having the events appear in a pop up window makes the maps visible in Android and mostly visible in Chrome, Firefox, Waterfox and Pale Moon, the page has to be reloaded some times to see the map correctly.