• Hi there –

    I’ve got 3 questions:

    (1) How do i remove the top bar/the wordpress menu bar at the top?
    i’m using a pricerr clone, and i don’t want my users to have that wordpress bar at the top.

    (2) Which file is it usually, where i can remove the logo off the url address at the top (just like www.ads-software.com has a W logo at the top)

    (3) Does anyone know where i can change links. Like at the moment, newly registered users get a link with https://……../wp-login.php
    i want to change to just /login, removing the /wp

    Thanks in advance!

    Emil

Viewing 5 replies - 1 through 5 (of 5 total)
  • Please, use remove admin bar or adminise plugin. You can change login using .htaccess

    Thread Starter runner5

    (@runner5)

    Hi limexs – im lost.
    use ‘remove admin bar or adminise plugin’?

    As for login change: .htaccess only has:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    So there’s nothing to work on.
    Cheers.

    Please, use this plugin to hide admin bar https://www.ads-software.com/extend/plugins/global-admin-bar-hide-or-remove/

    Or otherwise edit theme not to include wp_header

    to change login url

    add a new rule
    RewriteRule ^login$ wp-login.php
    after
    RewriteBase /

    I hope it will help.

    Never, forget to backup things you modify.

    Or otherwise edit theme not to include wp_header

    Assuming you mean wp_head(), that’s not correct. The footer is hooked into wp_footer(). And removing either is not recommended as both are used internally by WordPress and by many plugins.

    I agree with esmi. use Please, use this plugin to hide admin bar https://www.ads-software.com/extend/plugins/global-admin-bar-hide-or-remove/

    to change login url add a new rule in .htaccess after RewriteBase
    RewriteRule ^login$ wp-login.php

    in your functions.php add this filter

    add_filter('site_url',  'wplogin_filter', 10, 3);
    function wplogin_filter( $url, $path, $orig_scheme )
    {
     $old  = array( "/(wp-login\.php)/");
     $new  = array( "login");
     return preg_replace( $old, $new, $url, 1);
    }

    I hope this will solve your problem.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Removing the top bad/WordPress menu at the top?’ is closed to new replies.