Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Anoop Ranawat

    (@anoopranawat)

    Hello,

    Please replace the script code under plugin–> responsive-header-image-slider –> responsive_headerimageslider.php–> line 310

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

    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: <?php echo $autopalytrue; ?>,
              interval: <?php echo $autoplaydefultspeed; ?>,
              swap: true
            },
    		 pagination: {
          active: <?php echo $paginationtrue; ?>
        },
    	navigation: {
          active: false
    	  }
    
          });
        });
    	</script>

    Here i have added `navigation: {
    active: false
    }`
    to make the navigation false

    Thanks

    Thread Starter ViktorTheHun

    (@viktorthehun)

    Thanks mate for the really quick help !

    Plugin Author Anoop Ranawat

    (@anoopranawat)

    Hello,

    If you are happy with my help please rate this plugin,

    many thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove Navegation?’ is closed to new replies.