Hi Michelle,
You can try to use following code in the funcions.php of your theme:
add_action( 'wp_enqueue_scripts', f039924_enqueueScripts, 100);
function f039924_enqueueScripts () {
wp_dequeue_script( 'fac-mobile' );
wp_dequeue_script( 'fac-slider' );
wp_dequeue_script( 'fac' );
wp_enqueue_script( 'fac-mobile', Fac()->getAssetUrl('libs/jquery.mobile.min.js'), array('jquery'), false, true );
wp_enqueue_script( 'fac-slider', Fac()->getAssetUrl('libs/responsiveslides.js'), array('jquery'), false, true );
wp_enqueue_script( 'fac', Fac()->getAssetUrl('js/main.js'), array('jquery', 'fac-mobile', 'fac-slider'), false, true );
}
This code allows you to replace javascripts of my plugin to the site footer, but without any garanty from my side that plugn will work properly.
Pls let me know if this will help you.
Regards,
Alexey.