Viewing 1 replies (of 1 total)
  • Dear hotelmikezulu,

    You should edit the functions.php as outlined in this article.
    I am referring to the following piece of code that should be added to your functions.php:

    add_filter('show_admin_bar', '__return_false');

    Alternatively you can hide the bar (which is different from removing it), by doing the following:
    Go to the Admin Panel and go to Appearance -> Editor and click Style.css there is a piece of code that reads as follows:

    #wpadminbar{
    	-webkit-transform: translateZ(0);

    If you change that to:

    #wpadminbar{
    	display: none;
    	-webkit-transform: translateZ(0);

    That way it is invisible for visitors to see.

    Hope this helps. If it does, please mark this topic as resolved.

    Kind regards,

    CS_WordPress

Viewing 1 replies (of 1 total)
  • The topic ‘Top left unwanted links , login and register’ is closed to new replies.