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

HomePage Forums Themes Support Can’t edit mobile menu

Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #7820
    nonniebimbialassio
    Support Expired

    Hi, I have tried to edit the bottom menu in the moble version of the shopic theme, but io have no way to select it, and i deosn’t appear in the menu section on the wordpess dashboard.

    Can you please tell me how to edi t it?

    Thankl you so much for your time!

    #7841

    Hi there,

    #1. To edit menu mobile, please copy code and paste into file functions.php on child-theme

     – Shop:

    function shopic_handheld_footer_bar_shop_link() {
            echo '<a href="' . esc_url(get_permalink(get_option('woocommerce_shop_page_id'))) . '"><span class="title">' . esc_attr__('Shop', 'shopic') . '</span></a>';
        }

    – My account:

    function shopic_handheld_footer_bar_account_link() {
            echo '<a href="' . esc_url(get_permalink(get_option('woocommerce_myaccount_page_id'))) . '"><span class="title">' . esc_attr__('My Account', 'shopic') . '</span></a>';
        }

    – Search:

    function shopic_handheld_footer_bar_search() {
            echo '<a href=""><span class="title">' . esc_attr__('Search', 'shopic') . '</span></a>';
            shopic_product_search();
        }

    – Wishlist:

    function shopic_handheld_footer_bar_wishlist() {
            if (function_exists('yith_wcwl_count_all_products')) {
                ?>
                <a class="footer-wishlist" href="<?php echo esc_url(get_permalink(get_option('yith_wcwl_wishlist_page_id'))); ?>">
                    <span class="title"><?php echo esc_html__('Wishlist', 'shopic'); ?></span>
                    <span class="count"><?php echo esc_html(yith_wcwl_count_all_products()); ?></span>
                </a>
                <?php
            }
        }

    Then edit text or link.

    #8278
    nonniebimbialassio
    Support Expired

    Okay thanks! I did it but the whishlist button disappeard, and I would like to remove the account option since the theme account page and the whole dashboard are broken. How do I make the wishlist button appear again? And how do I remove the account button?

    #8337

    Hi,

    I have just resolved this issue, please recheck.

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.