DB Sync Media Files extension [closed]

Yes, there’s another required step: I must enter the correct connection informations before the checkbox shows up. The JS code checks for the connection, talks to the remote plugin and if it finds it’s all ok, lets the checkbox display itself. In other cases it hides the checkbox. Now I believe this plugin has a … Read more

multisite shared settings

Update from comments To convert an array of options to site options, you can try something like this: add_action( ‘init’, ‘wpse245699_use_site_options’ ); function wpse245699_use_site_options() { // Uses site options for these options. $required_site_options = array( ‘some_option_name’, ‘another_option_name’, ‘and_another_one’, ); foreach( $required_site_options as $option ) { add_action( ‘update_option_’ . $option, ‘wpse245699_update_site_option’, 10, 3 ); add_filter( ‘pre_option_’ … Read more

Smarter Document Management links between three WordPress sites sought

There is nothing in WP that specifically deals with cross–site communication. Every WP site is an island by design. However there are plenty helpful bits and pieces to rig suitable solutions for many use cases. As far as I follow your case I would imagine something like this: Central sites hosts documents (in whatever way … Read more