Hey @silsbyc,
Yes you can do this by using this code which will always force set the option.
add_filter(
'option_wpcode_settings',
function ( $settings ) {
if ( ! is_array( $settings ) ) {
$settings = array();
}
$settings['headers_footers_mode'] = true;
return $settings;
}
);
Keep in mind that we intend to build more robust access control and features for Multisite which I know will be very beneficial for administration / network wide customization.
If you enable this code above, then you won’t see those options and won’t be aware of those new powerful features.
So I recommend definitely checking in and keeping up with our development roadmap since we are working on some really neat stuff.