WPIntell

Source evidence

multisite compatible?

White Label – WordPress Custom Admin, Custom Login Page, and Custom Dashboard · support · 2019-11-29T21:36:00+00:00

mixedsentiment
mediumseverity
0.84relevance
6replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 28 rows with source links

17.9% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

23 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
cheezeball resolved
Just curious if anyone has tested this with WP Multisite (or multiuser, depending on your preference)? Will it work in an MU environment, and allow Super Admins to rebrand subdomains? i.e.: Top level domain is http://www.foo.com (or just foo.com) and where WPWhite is installed and configured. Client domain is abc.foo.com where the white labeling would be applied in addition to: xyz.foo.com mno.foo.com yabba.foo.com blah.foo.com etc Hi @mpivon ! White Label hasn’t been setup/tested for Multisite. I’m working on complete 2.0 rebuild with lots of new features. I’ll make sure to put MU on the request list as a future feature 😄 Let me know if you have any other ideas! Thanks! @mpivon White Label should now work well with Multisites! Please try it out. Each site will have it’s own settings. Super admins can edit everything, they bypass all rules of White Label Admmins. https://whitewp.com/docs/faq/white-label-multisite-compatibility/ Cool. Thanks for the heads up. Will take a look. Very exciting. Is there a way to have a setting that is inherited by every subsite in the network setup? @laiconsulting It’s not currently possible to do so, I’ll take it into consideration for the future. I recommend that you use the export/import settings to quickly setup each sub site for now. @morganhvidt Thanks for writing the plugin so well. Global setting can be achieved by modifying the get_option line in the definition of white_label_get_option. function white_label_get_option( $option, $section, $default = '' ) { $options = get_blog_option( get_main_site_id(), $section ); if ( isset( $options[ $option ] ) ) { return $options[ $option ]; } return $default; }

Comments

6 shown
Morgan Hvidt 2019-11-30T02:50:00+00:00

Hi @mpivon ! White Label hasn’t been setup/tested for Multisite. I’m working on complete 2.0 rebuild with lots of new features. I’ll make sure to put MU on the request list as a future feature 😄 Let me know if you have any other ideas! Thanks!

Morgan Hvidt 2020-01-12T04:56:00+00:00

@mpivon White Label should now work well with Multisites! Please try it out. Each site will have it’s own settings. Super admins can edit everything, they bypass all rules of White Label Admmins. https://whitewp.com/docs/faq/white-label-multisite-compatibility/

cheezeball 2020-01-13T08:30:00+00:00

Cool. Thanks for the heads up. Will take a look. Very exciting.

laiconsulting 2020-04-14T11:16:00+00:00

Is there a way to have a setting that is inherited by every subsite in the network setup?

Morgan Hvidt 2020-04-15T03:58:00+00:00

@laiconsulting It’s not currently possible to do so, I’ll take it into consideration for the future. I recommend that you use the export/import settings to quickly setup each sub site for now.

laiconsulting 2020-04-15T06:04:00+00:00

@morganhvidt Thanks for writing the plugin so well. Global setting can be achieved by modifying the get_option line in the definition of white_label_get_option. function white_label_get_option( $option, $section, $default = '' ) { $options = get_blog_option( get_main_site_id(), $section ); if ( isset( $options[ $option ] ) ) { return $options[ $option ]; } return $default; }