Problem with Flexisel.js
-
[ Moderator note: moved to Fixing WordPress. ]
Hi everybody.
I’ve tried to insert this plugin in my theme https://github.com/9bitStudios/flexisel
but it doesn’t work.In my style.css I’ve inserted the rules also for the markup of the plugin and I linked the JS in my function.php in this way:
function bootstrap_scripts()
{
wp_enqueue_script( ‘bootstrap-jquery’, get_template_directory_uri().’/js/jquery.min.js’ );
wp_enqueue_script( ‘bootstrap’, get_template_directory_uri() . ‘/js/bootstrap.js’, array( ‘jquery’ ) );
wp_enqueue_script( ‘flex-slide’, get_template_directory_uri() . ‘/js/jquery.flexisel.js’, array( ‘jquery’ ) );
wp_enqueue_style( ‘style’, get_stylesheet_directory_uri() . ‘/style.css’, array(), filemtime( get_stylesheet_directory() . ‘/style.css’ ) );
}
add_action( ‘wp_enqueue_scripts’, ‘bootstrap_scripts’ );When I launch my theme, nothing appear, neither the static image.
The topic ‘Problem with Flexisel.js’ is closed to new replies.