Title: Autoplay?
Last modified: August 21, 2016

---

# Autoplay?

 *  Resolved [paquito](https://wordpress.org/support/users/paquito/)
 * (@paquito)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/autoplay-11/)
 * Hi,
 * Is it possible to add an autoplay to the slideshow?
 * Thank you
    Paolo
 * [http://wordpress.org/plugins/carousel-horizontal-posts-content-slider/](http://wordpress.org/plugins/carousel-horizontal-posts-content-slider/)

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

 *  Plugin Author [subhansanjaya](https://wordpress.org/support/users/subhansanjaya/)
 * (@subhansanjaya)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/autoplay-11/#post-4044522)
 * Yes, its possible.
 * Please, go to your plugin folder. Then open inc folder. There, You will find 
   a file name custom.js. Open it. Then replace its code with the following code.
 *     ```
       jQuery(document).ready(function($) {
   
       	$("#foo1").carouFredSel({
       		auto : true,
       		prev : "#foo1_prev",
       		next : "#foo1_next"
       	});
       });
       ```
   
 *  [Saiful Islam](https://wordpress.org/support/users/saifulmd_0/)
 * (@saifulmd_0)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/autoplay-11/#post-4044690)
 * How to limit the speed of transition?
 *  Plugin Author [subhansanjaya](https://wordpress.org/support/users/subhansanjaya/)
 * (@subhansanjaya)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/autoplay-11/#post-4044691)
 * Please, replace the code in inc/custom.js file inside the plugin folder with 
   the following and change the duration accordingly.
 *     ```
       jQuery(document).ready(function($) {
   
       $("#foo1").carouFredSel({
       	circular: false,
       	responsive: true,
       	infinite: false,
       	auto 	: false,
       	prev	: {
       		button	: "#foo1_prev",
       		key		: "left"
       	},
       	next	: {
       		button	: "#foo1_next",
       		key		: "right"
       	},
       	pagination	: "#foo1_pag",
       scroll: {
       items: 1,
       easing : "linear",
       duration : 600,
       pauseOnHover	: false,
       },
       		items: {
   
       					//	height: '30%',	//	optionally resize item-height
       						visible: {
       							min: 1,
       							max: 100000
       						}
       					}
       });
   
       });
       ```
   

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

The topic ‘Autoplay?’ is closed to new replies.

 * ![](https://ps.w.org/carousel-horizontal-posts-content-slider/assets/icon-256x256.
   png?rev=2470415)
 * [Carousel Horizontal Posts Content Slider](https://wordpress.org/plugins/carousel-horizontal-posts-content-slider/)
 * [Support Threads](https://wordpress.org/support/plugin/carousel-horizontal-posts-content-slider/)
 * [Active Topics](https://wordpress.org/support/plugin/carousel-horizontal-posts-content-slider/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/carousel-horizontal-posts-content-slider/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/carousel-horizontal-posts-content-slider/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [subhansanjaya](https://wordpress.org/support/users/subhansanjaya/)
 * Last activity: [12 years, 6 months ago](https://wordpress.org/support/topic/autoplay-11/#post-4044691)
 * Status: resolved