• What if we could edit the CPT as SuperAdmin of a multisite? So, we can at once to edit 10 or 100 or 1000 sites.

    thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Kuba Mikita

    (@kubitomakita)

    Sorry, could you elaborate? I don’t really understand the feature

    Thread Starter Antonio D.

    (@colomet)

    I use a multisite, where I have 275 sites. If I have to activate your plugin, i have to open 275 sites and to change the settings of the CPT. https://cdn.wpsmackdown.com/wp-content/uploads/2015/11/wordpress-simple-post-notes-plugin-settings.jpg

    I have no post or pages, I have my own CPT.

    What if as SuperAdmin of the multisite, if the plugin is network activated, instead of a settings page each site, we have just one settings page (or also a new settings page) in the superadmin dashboard?

    Plugin Author Kuba Mikita

    (@kubitomakita)

    Ahh, I see. Thanks.

    Yeah, it would be possible but I’m loaded with work right now so this can take weeks to be developed.

    You could paste the below snippet in your theme functions.php file. It should do the job.

    add_filter( 'option_spnotes_settings', function( $value ) {
    	$value['post_types'][] = 'your-cpt';
    	return $value;
    } );
    Thread Starter Antonio D.

    (@colomet)

    thanks, really.

    Maybe you can write that in the FAQ of the plugin, so It will help in the same way to other people meanwhile you deveop the feature.

    thanks again

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Feature request: multisite support’ is closed to new replies.