Multiple Single Installs of WordPress with a central user base

Im sorry that I am asking this but I have been searching for ages and for some reaseon the suggested custom user table dosn’t work, it just gives me a username error. This is the code I am taking about: define(‘CUSTOM_USER_TABLE’,’new_user_table’); define(‘CUSTOM_USER_META_TABLE’, ‘new_usermeta_table’); So I have a main Single install of WordPress, Lets say I … Read more

Make Search Function include subdomain (blog.ourwebsite.com)

Wondering if there’s a way to edit our search.php or .htaccess or function.php (or anything else…) so that our search function on our main site (www.oursite.com) includes the subdomain of blog.ourwebsite.com? Any thoughts or suggestions are appreciated it.. 1 Answer 1 If you transform your main website’s WordPress into a multi-site environment, you can move … Read more

Can I use two different domain names with a WordPress multisite network?

I am currently running a DV server with MediaTemple and would like to have my domains: abc.com and cba.com mapped to the subdomains I set up with the WP networks one.mydomain.com and two.mydomain.com. The goal is keep the URLs abc.com and cba.com viewable in the browser, but the zone files are just referencing the subdomains … Read more

How to Redirect login User with Mapped Domiain Primary blog Url to Original Sub-site Url

I have the following code which redirects a user of a multi-site to their respective sub-site based on their primary blog url when they log in from the main site. add_filter(‘login_redirect’, function($redirect_to, $request_redirect_to, $user) { global $blog_id; global $current_user; if (!is_wp_error($user) && $user->ID != 0) { $user_info = get_userdata($user->ID); if ($user_info->primary_blog) { $primary_url = get_blogaddress_by_id($user_info->primary_blog)/* … Read more

Wordrpess Subdomains (Multi-Site) without Wildcard

I’ve installed WordPress Multisite using “Subdomains” method (instead of Subfolders). But I’ve found out, that my current hosting doesnt support WildCard subdomains. I use this method to setup it manually: https://puvox.software/blog/setup-wordpress-subdomains-for-multi-site-manually/ however, it has a small problem – it redirects (instead of rewriting) all assets to root domain… does any fix exists there? 0