Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1281517

    Hi there, I’m hoping to get some help with one of the websites I’ve built with your theme. I’m trying to get the sites as WCAG 2.0 Compliant as possible and to that end I’ve been working on a tab-able menu. I’ve followed the instructions on both https://kriesi.at/support/topic/accessibility-issues-with-main-nav-leaves-us-sites-in-danger-of-lawsuits/ and https://kriesi.at/support/topic/make-mega-menu-accessible/#post-1253157 but haven’t had any luck with either a mega menu or a regular menu displaying its subitems on tabbing.

    What should I try next?

    Also, are there any updates in the works to make this theme more accessible right out of the box?

    #1282019

    Hey kyle123,

    Thank you for the inquiry.

    Did you follow the suggested changes in the following post?

    // https://kriesi.at/support/topic/accessibility-issues-with-main-nav-leaves-us-sites-in-danger-of-lawsuits/#post-1226327

    You may need to purge the cache after doing the modification.

    For the mega menu, this should work.

    // https://kriesi.at/support/topic/make-mega-menu-accessible/#post-1253157

    If you need further help, please post the login details in the private field and we will try to implement the changes.

    Best regards,
    Ismael

    #1282096

    Hi Ismael,
    Thanks for the response. As I mentioned in my original post, I have incorporated the changes as listed in both of those articles. I have cleared the cache and the changes are having an impact (for some reason my mega menu has been shifted to the left, offset of where it is supposed to be). However, the desired behavior is still not happening. I’ve included login details below for you to have a look. FYI the site is part of a multisite setup.

    #1282252

    Hi,

    Thank you for the info.

    We cannot edit the files because the Appearance > Editor panel is not available. Please include the FTP details as well so that we could access the file server, or just enable the WP file editor.

    Best regards,
    Ismael

    #1282275

    I’ve included the FTP details below. Thanks!

    #1282836

    Hi,

    Thank you for the info.

    We created a js folder inside the child theme directory and place the avia-snippet-megamenu.js file inside so that it coincides with the declared path in the functions.php file, or in the wp_enqueue_script function.

    
    add_action("after_setup_theme", function() {
    	wp_dequeue_script('avia-megamenu');
    	wp_enqueue_script('avia-megamenu', get_stylesheet_directory_uri().'/js/avia-snippet-megamenu.js', array('avia-default'), '', true);
    }, 999);
    
    

    You can now tab though the mega menu items to open the sub menu container. Please purge the cache and make sure to do a hard refresh before checking the page.

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.