• [ 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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • If you are using Bootstrap, why not just use the Bootstrap Carousel?

    Link to your site?

    Thread Starter fibbo8

    (@fibbo8)

    Hi hudson.

    Thank for your reply and excuse my late response.

    I’m still testing WordPress on a local installation.
    As a workaround I can use the carousel, but I’d like that plugin that I’ve tried on other sites and I’d like to understand why it can’t reach the images.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Problem with Flexisel.js’ is closed to new replies.