Anyone figured out how to use WordPress MultiSite with Domain Mapping & SSL?

I am using multisite with domain mapping. I chose the CNAME option for pointing the mapped domain name. My site is installed as a sub directory. http:// homesite.org/seedlivelihood Files are served like so: https:// homesite.org/seedlivelihood/wp-content/plugins/woocommerce/assets/css/fancybox.min.css?ver=3.2.1 With domain mapping the site is at: seedlivelihood.org Which is where my SSL is set up to be from. Safari … Read more

Password Reset for Users on a Multisite Subsite

This works well! “By default, WordPress Multisite uses the main blog for passwort resets. This plugin enables users to stay in their blog during the whole reset process.” <?php /** * Plugin Name: Multisite: Passwort Reset on Local Blog * Plugin URI: https://gist.github.com/eteubert/293e07a49f56f300ddbb * Description: By default, WordPress Multisite uses the main blog for passwort … Read more

Sharing Dynamic Sidebars across Multisite Blogs

Unfortunately, the switch_to_blog() method isn’t going to work for this purpose. switch_to_blog() is really only a partial switch – it makes some modifications to $wpdb that help with database queries. But it’s not a complete switch in the way you might imagine. In particular, dynamic_sidebar() depends on global called $wp_registered_sidebars. This global is populated by … Read more