i just activated this and i tried to put in code for the footer for all blogs.
the footer already there was not replaced with new one. both appear
https://www.ads-software.com/plugins/wpms-network-global-inserts/
]]>HI,
WIll this allow me to have a global header across my multi-site?
Thank you
https://www.ads-software.com/plugins/wpms-network-global-inserts/
]]>An attempt to activate the plugin on the main site results in a 404 error at the following URL:
https://tripawds.net/wp-admin/plugins.php?action=activate&plugin=wpms-network-global-inserts%2Fwpms-network-global-inserts.php&plugin_status=all&paged=1&s&_wpnonce=164310c045
When trying to network-activate, similar Page Not Found result at:
domain.tld/wp-admin/network/plugins.php?action=activate&plugin=wpms-network-global-inserts%2Fwpms-network-global-inserts.php&plugin_status=all&paged=1&s&_wpnonce=164310c045
Bummer! Was looking forward to new solution for network-wide header content.
WP v. 3.6.1
Plugin v.0.0.2
https://www.ads-software.com/plugins/wpms-network-global-inserts/
]]>thanks for this great plugin. but i have an issue with the header content.
may be its wp version or theme issue; the content supposed to be in header area is in footer!
https://www.ads-software.com/extend/plugins/wpms-network-global-inserts/
]]>Looks like this plugin is including a js file (/assets/js/script.js) that doesn’t exist. It doesn’t cause an issue, it just doesn’t doesn’t seem to need to. Seems like it gets called in wpms-network-global-inserts.php in this function:
function load_script()
{
wp_enqueue_script('wpmsngi_script', WPMSNGI_URL . '/assets/js/script.js', array('jquery'));
}
I am going to dequeue it wiht this:
add_action( 'wp_enqueue_scripts', 'remove_scripts', 99 );
function remove_scripts() {
//Remove an 404 js file that the WPME Network Global Inserts plugin is including
wp_dequeue_script('wpmsngi_script');
}
https://www.ads-software.com/extend/plugins/wpms-network-global-inserts/
]]>