Jump to content

Duplicated icon in menu item


Recommended Posts

Hi, recently I added a new menu item with hook, everything it's good with that, but I have duplicated icon in this menu item, but only after login.
When I delete icon in php I lost it in mainpage but It exist after login.
I don't know how to fix it.

add_hook('ClientAreaPrimaryNavbar', 1, function (MenuItem $primaryNavbar)
{
    if (!is_null($primaryNavbar->getChild('Store'))) {
        $primaryNavbar->removeChild('Store');
    }
});

add_hook('ClientAreaPrimaryNavbar', 1, function (MenuItem $primaryNavbar)
{
    if (!is_null($primaryNavbar->getChild('Domains'))) {
        $primaryNavbar->removeChild('Domains');
    }
});

add_hook('ClientAreaPrimaryNavbar', 1, function (MenuItem $primaryNavbar)
{
    $primaryNavbar->addChild('Domeny www')
        ->setUri('cart.php?a=add&domain=register')
        ->setOrder(13);
        
   if (!is_null($primaryNavbar->getChild('Domeny www'))) {
        $primaryNavbar->getChild('Domeny www')
           ->setIcon('fa-globe-europe');
   }   
});

before and after login

image.png.2ff6334736720a88d2e2f303bd31fd18.pngimage.png.029164fe0758a67403be6b0282e732a3.png

the html code look like this

<div class="panel" menuitemname="Domeny www">
            <a href="https://<domain>/cart.php?a=add&amp;domain=register" class="fal fa-globe menu-icon-new">
                <i class="fas fa-globe-europe"></i>&nbsp;                Domeny www
                                            </a>
        </div>

image.png

Link to comment
Share on other sites

  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated