Thank you Yellow Swordfish…I commented out the portion in red:
* Enqueue scripts and styles
* – taking care not to force site scripts on WP Admin sections
*************************************************/
if ( ! is_admin() ) {
function init_wfts_scripts () {
wp_enqueue_style( ‘style’, get_stylesheet_directory_uri() . ‘/style.css’ );
/* css for overlays */
//wp_enqueue_style( ‘shadowboxcss’, get_stylesheet_directory_uri() . ‘/inc/js/shadowbox-3.0.3/shadowbox.css’ );
/* using wp_deregister_script() to disable the versions that comes packaged with WordPress */
/* wp_deregister_script(‘jquery’);
wp_deregister_script(‘jquery-ui’); */
/* using wp_register_script() to register updated libraries */
/* wp_register_script(‘jquery’, ‘https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js’, false, ‘1.5.2’, true );
wp_register_script(‘jquery-ui’, ‘https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js’, false, ‘1.8.11’, true ); */
/* using wp_enqueue_script() to load the updated libraries */
wp_enqueue_script(‘jquery’);
wp_enqueue_script(‘jquery-ui’);
/* used for home page cycling (stage) images */
//wp_enqueue_script( ‘jquery-cycle’, get_template_directory_uri() . ‘/inc/js/jquery.cycle.all.min.js’, array( ‘jquery’ ), ‘2.88’, true );
/* used for overlays */
//wp_enqueue_script( ‘shadowbox’, get_template_directory_uri() . ‘/inc/js/shadowbox-3.0.3/shadowbox.js’, array( ‘jquery’ ), ‘2.88’, true );
/* document.ready() */
wp_enqueue_script( ‘wfts-plugins’, get_stylesheet_directory_uri() . ‘/inc/js/plugins.js’, array( ‘jquery’ ), ‘1.1’, true );
wp_enqueue_script( ‘wfts-javascript’, get_stylesheet_directory_uri() . ‘/inc/js/wfts.js’, array( ‘jquery’, ‘jquery-ui’ ), ‘1.1’, true );
}
// k, now add the scripts in the init
add_action(‘init’, ‘init_wfts_scripts’);
With no luck… I cleared my cache for a full week on both Firefox and Chrome and asked someone else to do the same and test.
Could this line be an issue:
rel=’stylesheet‘ id=’jqcss-css‘ href=’https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/smoothness/jquery-ui.css?ver=4.4.2‘ type=’text/css‘ media=’all‘ />
I get that when I View Code on the main forum page. I know it is a stylesheet, so it doesn’t seem that it should be an issue? I am stumped…
Thank you for any help you can give.