• frankdan

    (@danfrankdancom)


    The site: https://donnaclairart.com/

    After “Using a pre-existing subdirectory install” to run wordpress from the root folder, all was well and looked good until I realized that my admin bar had disappeared.

    The Admin bar is there when I’m on the backside.
    I’ve tried changing themes and deactivating all plugins. Same problem.
    “Show Toolbar when viewing site” is checked in my profile.

    I’m now wondering if it’s something in the index.php I copied to the root folder, then edited, as instructed.

    I was using the Beaver Page Builder plugin, but I Uninstalled it, then reinstalled it. No change. The site now looks strange because of that, but won’t be hard to fix when I get my Admin bar back…

    I’ll give someone brief admin access if they want to have a look.

    Thanks for any advice.

Viewing 3 replies - 1 through 3 (of 3 total)
  • is the following in your footer?

    <?php wp_footer(); ?>

    Thread Starter frankdan

    (@danfrankdancom)

    Yes.

    Thread Starter frankdan

    (@danfrankdancom)

    Hmm, maybe it’s the htaccess file(s).
    There’s supposed to be one in the root AND one in the wp site’s folder (mine is called /wp/), right?

    The htaccess inside the /wp/ folder:

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

    # END WordPress

    The htaccess in the root reads:

    # 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

    Is that any use?

    Thanks again.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Admin bar has disappeared’ is closed to new replies.