Hey,
I love this plugin, but it adds Jquery to a few random places which breaks my wordpress. I was trying to disable its Jquery placement and then manually place it in the footer
add_action('wp_print_scripts', 'deregister_theme', 100 );
function deregister_theme () {
wp_deregister_script ('deregister_theme');
}
add_action('wp_print_scripts', 'dereg_section', 100 );
function dereg_section() {
wp_deregister_script ('section-widget') );
}
Anyone have any ideas?