he probably just missed that you had attached a file…
lets try changing this:
wp_enqueue_script( ‘jquery’ );
wp_enqueue_script( ‘jquery-ui-core’ );
wp_enqueue_script( ‘bootstrap’ ,TC_BASE_URL . ‘inc/js/bootstrap.min.js’ ,array( ‘jquery’ ),null, $in_footer = true);
to
wp_enqueue_script( ‘jquery’ );
wp_enqueue_script( ‘bootstrap’ ,TC_BASE_URL . ‘inc/js/bootstrap.min.js’ ,array( ‘jquery’ ),null, $in_footer = true);
wp_enqueue_script( ‘jquery-ui-core’, ”, array(‘jquery’, ‘bootstrap’), false, true );
the goal is to get bootstrap to load before jquery ui since it totally stomps on the wp jquery ui (poor design choice to use bootstrap when its known to do this)…
also you probably want to make sure you are loading your forum scripts in the footer on forum – integration – page and permalink…