Title: Fade in speed
Last modified: August 22, 2016

---

# Fade in speed

 *  Resolved [senzacija](https://wordpress.org/support/users/senzacija/)
 * (@senzacija)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/fade-in-speed/)
 * Hey dude!
 * Simply awesome plugin, works perfectly!
 * One thing that i am having problems with is fade speed, aka, the testimonial 
   fade effect is too fast, i was wondering where can i set up how fast the transition
   will be?
 * Thanks and rock on!
 * [https://wordpress.org/plugins/bne-testimonials/](https://wordpress.org/plugins/bne-testimonials/)

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

 *  Plugin Author [Kerry](https://wordpress.org/support/users/bluenotes/)
 * (@bluenotes)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/fade-in-speed/#post-5720512)
 * Hey Senzacija,
 * There isn’t an option for that in the shortcode but I’ll see about adding it 
   in a future update. In the meantime, if you’re comfortable with code, you can
   add it manually. In includes/shortcode-slider.php starting around line 67 you’ll
   see the js inline for flexslider. Here you can add additional options from the
   flexslider API.
 * [http://www.woothemes.com/flexslider/](http://www.woothemes.com/flexslider/)
 * So in this case you would add `animationSpeed: 600`. The 600 is in milliseconds.
 *     ```
       // Load Flexslider API
       $shortcode_output = '<script type="text/javascript">
       	jQuery(document).ready(function($) {
       			$(\'#bne-slider-id-'.$slider_random_id.' .bne-testimonial-slider\').flexslider({
       				animation: "'.$animation.'",
       				smoothHeight: '.$smooth.',
       				pauseOnHover: '.$pause.',
       				controlNav: '.$nav.',
       				directionNav: '.$arrows.',
       				slideshowSpeed: '.$speed.',
       				animationSpeed: 600
       			});
       		});
       	</script>';
       ```
   
 * Note that the last item does not have a comma at the end.
 *  Thread Starter [senzacija](https://wordpress.org/support/users/senzacija/)
 * (@senzacija)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/fade-in-speed/#post-5720516)
 * Awesome, thank you a bunch!
    Related to that, how can i make the changes stay
   and not get overwritten with future plugin update?
 * And once again, great job!
 *  Thread Starter [senzacija](https://wordpress.org/support/users/senzacija/)
 * (@senzacija)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/fade-in-speed/#post-5720517)
 * Or, can you tell me how to disable the plugin from updating so the changes dont
   get overwritten?
 *  Plugin Author [Kerry](https://wordpress.org/support/users/bluenotes/)
 * (@bluenotes)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/fade-in-speed/#post-5720525)
 * In this case, it will always be overwritten on plugin updates as you’re editing
   the core files. What you can do, but you have to keep track of it incase something
   cool is added later to the original or if the html markup changes, is to un-register
   the shortcode from the plugin and then add it again in your theme’s functions.
   php. This would let you totally take control over the output of the shortcode.
 * This would go into your theme’s functions.php file. I didn’t copy and paste the
   whole thing here.
 *     ```
       // First, un-register the shortcode.
       remove_shortcode('bne_testimonials_slider');
   
       // New Shortcode Function - Make sure the name is different from the original.
       function my_bne_testimonials_slider_shortcode( $atts ) {
          ... rest of the shortcode contents....
       }
       add_shortcode( 'bne_testimonials_slider', 'my_bne_testimonials_slider_shortcode' );
       ```
   

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

The topic ‘Fade in speed’ is closed to new replies.

 * ![](https://ps.w.org/bne-testimonials/assets/icon-256x256.png?rev=1408516)
 * [BNE Testimonials](https://wordpress.org/plugins/bne-testimonials/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/bne-testimonials/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/bne-testimonials/)
 * [Active Topics](https://wordpress.org/support/plugin/bne-testimonials/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bne-testimonials/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bne-testimonials/reviews/)

## Tags

 * [speed](https://wordpress.org/support/topic-tag/speed/)
 * [transition](https://wordpress.org/support/topic-tag/transition/)

 * 4 replies
 * 2 participants
 * Last reply from: [Kerry](https://wordpress.org/support/users/bluenotes/)
 * Last activity: [11 years, 4 months ago](https://wordpress.org/support/topic/fade-in-speed/#post-5720525)
 * Status: resolved