Your account expired support, please renew to get your support.

HomePage Forums Themes Support Umimo – Furniture Store WordPress Theme Trying to to improve the accessibility of our web store.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #21574
    adrianazitacampos3981
    Support Expired

    Hello,

    We’re using an extension called Lighthouse to tell us what we need to improve in our website and it shows that some of our buttons don’t actually have proper names to it. https://paste.pics/a2ef5aaaf2cdff8f5f22c710cc0cea29 Where can we change this issue?

    Thank you!

    #21575
    adrianazitacampos3981
    Support Expired

    The same thing with the links, it says that the Links do not have a discernible name – https://paste.pics/b4512e1e8cddd69afc2492dd98172d3c. Can you help us with this too?

    Thank you!

    #21596

    #1. https://paste.pics/a2ef5aaaf2cdff8f5f22c710cc0cea29

    I can’t check this issue: https://ibb.co/SR35LKW

    #2.
    1. You need to add alt title for Logo image
    2. Search button: Copy this code and paste to file functions.php( child-theme)

    function umimo_header_search_button() {
    
            add_action('wp_footer', 'umimo_header_search_popup', 1);
            ?>
            <div class="site-header-search">
                <a href="#" class="button-search-popup" title="Search"><i class="umimo-icon-search"></i></a>
            </div>
            <?php
        }

    3. Account:

    function umimo_header_account() {
    
            if (!umimo_get_theme_option('show_header_account', true)) {
                return;
            }
    
            if (umimo_is_woocommerce_activated()) {
                $account_link = get_permalink(get_option('woocommerce_myaccount_page_id'));
            } else {
                $account_link = wp_login_url();
            }
            ?>
            <div class="site-header-account">
                <a href="<?php echo esc_url($account_link); ?>" title="My account">
                    <i class="umimo-icon-account"></i>
                    <span class="account-content">
                        <?php
                        if (!is_user_logged_in()) {
                            esc_attr_e('Sign in', 'umimo');
                        } else {
                            $user = wp_get_current_user();
                            echo esc_html($user->display_name);
                        }
    
                        ?>
                    </span>
                </a>
                <div class="account-dropdown">
    
                </div>
            </div>
            <?php
        }
Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.