Wildcard multisite wp-admin url wrongfully redirected

Take a look at your wp-config.php file. For a subdomain installation, you should have something like this: define(‘MULTISITE’, true); define(‘SUBDOMAIN_INSTALL’, true); define(‘DOMAIN_CURRENT_SITE’, ‘rareteas.com’); define(‘PATH_CURRENT_SITE’, “https://wordpress.stackexchange.com/”); define(‘SITE_ID_CURRENT_SITE’, 1); define(‘BLOG_ID_CURRENT_SITE’, 1); If you have SUBDOMAIN_INSTALL set to false, change it to true, which is necessary for a subdomain multisite. Next, take a look at your database. Sometimes … Read more

WP dashboard messed up

I suspect that if you enable the Network tab in your browser Diagnostics screen (usually F9, but right-click and select ‘inspect’). you will see that a CSS file is not getting loaded for some reason. This is probably a theme issue of not properly loading the CSS. Could also be a caching issue; perhaps the … Read more