Hi guys, I have the same problem on my forum. I think it’s too a “bootstrap” problem, but i’m not sure. I’m just a beginner.
So, i have the x2 wordpress theme, and for my forum i have “sky blue”. Any Idea?
Thank you for your help!
I found in my x2.php this line (Maybe Here?) :
### js
function enqueue_script() {
global $cap;
if( is_admin() )
return;
// on single blog post pages with comments open and threaded comments
if(defined(‘BP_VERSION’)){
if ( is_singular() && bp_is_blog_page() && get_option( ‘thread_comments’ ) ) {
// enqueue the javascript that performs in-link comment reply fanciness
wp_enqueue_script( ‘comment-reply’ );
}
} else {
if ( is_singular() && comments_open() && get_option( ‘thread_comments’ ) ) {
// enqueue the javascript that performs in-link comment reply fanciness
wp_enqueue_script( ‘comment-reply’ );
}
}
wp_deregister_script( ‘ep-jquery-css’ );
wp_enqueue_script( ‘jquery’ );
wp_enqueue_script( ‘jquery-ui’ );
wp_enqueue_script( ‘jquery-ui-tabs’ );
wp_enqueue_script(‘bootstrapjs’, get_template_directory_uri().’/core/includes/bootstrap/js/bootstrap.min.js’, array(‘jquery’) );
wp_enqueue_script(‘waypoints’, get_template_directory_uri().’/core/includes/waypoints/waypoints.min.js’, array(‘jquery’), ‘1.4.4’, true );
add_action(‘wp_footer’, ‘waypoints_js’, 1 );
}