Vslider not working properly - not sliding - static first image unless refresh

Started 4 months ago by rolley Latest reply from Mech
  • This topic is resolved
    1. I have install vslider 4.1 on the homepage of http://ukconservatoryblinds.com/ which is wp version 3.2.1
      But it does not slide, the only time the images change is when i refresh the page.

      I am not a coder so clear explanation on what to do would be appreciated.

      Thanks

      Posted 4 months ago #
    2. You are including two jquery versions in your theme:

      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.js" type="text/javascript">
      and
      <script src="http://ukconservatoryblinds.com/wp-includes/js/jquery/jquery.js?ver=1.6.1" type="text/javascript">

      While first one seems to be added in the theme and second one is added by the vSlider. Please see the below example to include jquery into your WordPress theme "The Right Way".

      Add the below function in functions.php to avoid such conflicts and do not explicitly include jquery in your theme.

      <?php
      function my_scripts_method() {
      wp_deregister_script( 'jquery' );
      wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js');
      wp_enqueue_script( 'jquery' );
      }

      add_action('wp_enqueue_scripts', 'my_scripts_method');
      ?>

      More on WordPress here : http://codex.wordpress.org/Function_Reference/wp_enqueue_script

      Posted 4 months ago #
    3. Umberto
      Member

      Hello Mr Vibe, first of all great work. Nice piece of app you have.

      The issue in my case is the following, I have installed the app here news.mmafz.com and without no problem everything is working fine.

      However, in this case http://emirates-jiujitsu-center.com/, and with the same framework Im not able to see any option working. No title, buttons or transition.

      Help will be really appreciated.

      Thanks in advance,

      Umberto

      Posted 3 months ago #
    4. I'm having a similar issue. Only the first image displays without any transition. There might be a problem with the javascript, but I don't know enough about that to be sure. I've tried deleting the plugin and reinstalling, but nothing changes. For the longest time, it was working properly, so a new plugin or maybe an update might have broken it. Here is the link: http://broadsenate.com. Any help would be appreciated greatly. Thanks.

      Posted 1 month ago #

    Reply

    You must log in to post.