Title: First Slide Previous Arrow
Last modified: March 20, 2017

---

# First Slide Previous Arrow

 *  Resolved [WPUser939](https://wordpress.org/support/users/wpuser939/)
 * (@wpuser939)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/first-slide-previous-arrow/)
 * Is there any way to have the first slide not show the previous arrow on the Crelly
   Slider plugin?
 * All other slides should have both forward and previous arrows.
    I only want the
   first slide to only show the forward arrow. Thanks 🙂

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

 *  Thread Starter [WPUser939](https://wordpress.org/support/users/wpuser939/)
 * (@wpuser939)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/first-slide-previous-arrow/#post-8937090)
 * I’m using the slider like a power point presentation
    so a visitor can read what
   we provide. So when they land on the home page, the slider needs to be clicked
   through. They need to start from the beginning and read through so the previous
   button on the first slide would land them on the last slide. I’m going to ad 
   text on the first slide to say something like “Click through our presentation
   here >>”. A possible enhancement suggestion would to be able to have the right
   arrow be some sort of GIF so it catches the eye so they know to click this to
   proceed. A preference for people who don’t have the slides automatically switch.
 *  Plugin Author [Fabio Rinaldi](https://wordpress.org/support/users/fabiorino/)
 * (@fabiorino)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/first-slide-previous-arrow/#post-8941070)
 * Hello, sorry if it took me a bit long to answer
 * > Is there any way to have the first slide not show the previous arrow on the
   > Crelly Slider plugin?
 * Yes, paste this code to your slide callbacks (delete the current beforeSlide 
   function):
 *     ```
       beforeSlideStart : function() {
       var current_slide = $('.crellyslider-slider-test').data('crellySlider').getCurrentSlide();
   
       if(current_slide == 0) {
       	$('.crellyslider-slider-test .cs-previous').hide();
       }
       else {
       	$('.crellyslider-slider-test .cs-previous').show();
       }
       },
       ```
   
 * Please let me know if you need other help
 *  Thread Starter [WPUser939](https://wordpress.org/support/users/wpuser939/)
 * (@wpuser939)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/first-slide-previous-arrow/#post-8941123)
 * Hi.. Thanks for getting back to me.
    That didn’t work 🙁 The slides don’t show
   at all since I’ve made this change. This is how my call backs now look. Is that
   right?
 * beforeStart : function() {},
    beforeSetResponsive : function() {}, beforeSlideStart:
   function() { var current_slide = $('.crellyslider-slider-test').data('crellySlider').
   getCurrentSlide(); if(current_slide == 0) { $('.crellyslider-slider-test .cs-
   previous').hide(); } else { $('.crellyslider-slider-test .cs-previous').show();}},
   beforePause : function() {}, beforeResume : function() {},
 *  Plugin Author [Fabio Rinaldi](https://wordpress.org/support/users/fabiorino/)
 * (@fabiorino)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/first-slide-previous-arrow/#post-8941208)
 * I’m really sorry, I forgot to tell you to change “test” to your actual slider
   alias!
 *  Thread Starter [WPUser939](https://wordpress.org/support/users/wpuser939/)
 * (@wpuser939)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/first-slide-previous-arrow/#post-8941240)
 * Was actually was looking at that as the reason
    when I just got your reply:) 
   Thank you so much.. It works perfect now thanks to you..
 *  Plugin Author [Fabio Rinaldi](https://wordpress.org/support/users/fabiorino/)
 * (@fabiorino)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/first-slide-previous-arrow/#post-8941325)
 * Great!

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

The topic ‘First Slide Previous Arrow’ is closed to new replies.

 * ![](https://ps.w.org/crelly-slider/assets/icon-128x128.jpg?rev=1305586)
 * [Crelly Slider](https://wordpress.org/plugins/crelly-slider/)
 * [Support Threads](https://wordpress.org/support/plugin/crelly-slider/)
 * [Active Topics](https://wordpress.org/support/plugin/crelly-slider/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/crelly-slider/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/crelly-slider/reviews/)

 * 6 replies
 * 2 participants
 * Last reply from: [Fabio Rinaldi](https://wordpress.org/support/users/fabiorino/)
 * Last activity: [9 years, 4 months ago](https://wordpress.org/support/topic/first-slide-previous-arrow/#post-8941325)
 * Status: resolved