Worked around the problem for now, unless others have a more graceful solution. (My wp-socializer plugin admin page, for the networked sites aren’t working still, but I assume something similar to below, would also work. The customer facing socializer features are working fine, now.) I simply had to enqueue the socializer javascript and css in my functions.php for my theme.
//Workaround to fix WP-SOCIALIZER on the other multi-site/networked sites
function socializer_scripts() {
wp_enqueue_style( ‘socializer-css’,’/wp-content/plugins/wp-socializer/public/css/wp-socializer-buttons-css.css’, array(), ‘2.4.9.8’, false );
wp_enqueue_script( ‘socializer-js’,’/wp-content/plugins/wp-socializer/public/js/wp-socializer-bookmark-js.js’, array(), ‘2.4.9.8’, false );
}
add_action( ‘wp_enqueue_scripts’, ‘socializer_scripts’ );
The last option. set to FALSE was needed as well. True didn’t seem to have any effect.