Comment to 'Remove " Powered by UNA " graphic'
  • Add this code into the Head Injection:

    Location: Studio>Designer>Injections

    URL:

    {{yourdomain}}/studio/designer.php?page=injections

    "<head>

    ...

    <style>

     -menu-footer > li.bx-menu-item.bx-menu-item-powered_by.bx-stl-mil-wo-bg-gaps {

       display: none;

     }

    </style>

    ...

    </head>

    <head>

    ...

    <script>

     window.onload = function() {

       var element = document.querySelector("-menu-footer > li.bx-menu-item.bx-menu-item-powered_by.bx-stl-mil-wo-bg-gaps");

       if (element) element.parentNode.removeChild(element);

     }

    </script>

    ...

    </head>"