Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author anoopranawat

    (@anoopranawat)

    Hello,

    For that i need to check your header.php file, If you tell me which wordpress theme you have used so any can solve this.

    I think bellow this div
    ‘<div class=”headerslider”> ….</div>`

    There is one more code that is taking dynamic image from admin “Appearance> Header” OR it can be a static image

    Thread Starter danonline

    (@danonline)

    The theme is Gridiculous. Thanks for the help.

    Thread Starter danonline

    (@danonline)

    I think I found the code to remove and it looks ok, but the slider is not playing automatically. It is waiting to be played. How can you make it start when loaded?

    Plugin Author anoopranawat

    (@anoopranawat)

    Hello danonline,

    Please go to plugins > responsive-header-image-slider > responsive_headerimageslider.php

    and find the line no 295 OR find this javscript code

    <script type="text/javascript">
    	 jQuery(function() {
          jQuery('#slides').slidesjs({
            width: <?php echo $sliderdefultwidth ; ?>,
            height: <?php echo $sliderdefultheight ; ?>,
            play: {
              active: <?php echo $pausedefulthover; ?>,
              auto: false,
              interval: <?php echo $autoplaydefultspeed; ?>,
              swap: true
            }
          });
        });
    	</script>

    please repace this code with this code

    `<script type=”text/javascript”>
    jQuery(function() {
    jQuery(‘#slides’).slidesjs({
    width: <?php echo $sliderdefultwidth ; ?>,
    height: <?php echo $sliderdefultheight ; ?>,
    play: {
    active: <?php echo $pausedefulthover; ?>,
    auto: true,
    interval: <?php echo $autoplaydefultspeed; ?>,
    swap: true
    }
    });
    });
    </script>`

    Thread Starter danonline

    (@danonline)

    That worked. Thank you.

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

The topic ‘Inserted Slider Not Right’ is closed to new replies.