Nginx rules for subdomain multisite install (Bedrock)

Ok some wise guy deleted my last post. The answer, which the above member (@etc) gave to me on another forum, and is working quite fine, is as follows: # Rewrites for Bedrock Multi-Site Subdomain Setup rewrite /wp-admin$ $scheme://$host$uri/ last; rewrite ^/(wp-.*.php)$ /wp/$1 last; rewrite ^/(wp-(content|admin|includes).*) /wp/$1 last; He revised his answer but did not … Read more

Should i use multisite for my business?

I personally love multisites, because you only need to make updates once on core, themes and plugins. It also saves on hosting charges and makes user management easier. It also keeps uploads, posts, pages and custom content separate. I guess you question comes because of having sub-domains (e.g. weddings.website.co.uk) or sub-folders (e.g. website.co.uk/weddings). I hear … Read more

Allow users to register on multisite through WooCommerce using the same email address

There is the option that you don’t allow the user to register on the main site, allowing them to register on the subsite only. The plugin network-subsite-user-registration allows this, if the user is already registered on the network then they are automatically added, by the plugin, to the site requesting registration. The hook that does … Read more