WordPress admin pointers tour bug?
WordPress admin pointers tour bug?
WordPress admin pointers tour bug?
hide custom post types with specific meta key ON admin backend
A great tool for WordPress database and domain migration is Search-Replace-DB. It does all the rename work for you and even takes care of serialized data. You can find here. What you should do: Clear the whole database in the target system you fiddled around with. Drop all tables, so that you have an empty … Read more
Try to deactivate all your activated plugins 🙂 mainly your security plugins installed like wordfence. Check your .htaccess file, and your .htaccess file should look like – ‘ # 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 … Read more
<div class=”menu-wrapper”> <div class=”menu1″> <?php wp_nav_menu( array( ‘theme_location’ => ‘menu-1’, ‘menu_id’ => ‘top-menu’, ) ); ?> </div> <div class=”menu2″> <?php wp_nav_menu( array( ‘theme_location’ => ‘menu-2’, ‘menu_id’ => ‘main-menu’, ) ); ?> </div> </div>
Dashboard broken into list of links
There’s not much to go on here, but I would check out that Menu Editor you’ve got there. See if you’ve ( or someone else ) has hidden Users and Appearance from your user.
Can’t access dashboard as administrator, login as any other level works though
This is due to plugin or theme complications on your website. SO try to deactivate all the plugins and active one by one to figure out the issue. Also, check console if there are any errors Also, check with the default theme.
The problem was in the names of the meta keys of the wpAA_users table: instead of using wp_capabilities and wp_user_level I should have used the actual prefix, that is wpAA_capabilities and wpAA_user_level. With these modifications I can now access the site as administrator.