Jump to content
Sign in to follow this  
gayatriom

Carousel not rotating

Recommended Posts

gayatriom

Hey. I installed the carousel and it doesn't seem to move at all!

Share this post


Link to post
Share on other sites
Kate

Hi Gayatri - The content is in there, but it's not moving? Is that correct? I would try disabling any plugins you currently have installed, and seeing if it works then. If it does, then re-enable them one by one to find the culprit.

Share this post


Link to post
Share on other sites
optionease

Hi Kate, I am having the same problem. Disabled all Plugins and the carousel just loads the first post feature image and does not rotate unless you press arrows. This is on my Home page. Also tried setting this all up using NextGen but no luck. WP 3.1 PP 1.3.1.

Share this post


Link to post
Share on other sites
gayatriom

Hey! I will try disabling plugins. Eric- if you find the culprit- do post :)

Share this post


Link to post
Share on other sites
style

I'm running into the same issue :)

Share this post


Link to post
Share on other sites
style

I'm running into the same issue :)

Share this post


Link to post
Share on other sites
optionease

I deactivated pagelines base, activated another theme and reactivated pagelines base and still not rotating. I have disabled all plugins and still nothing. Someone help please!

Share this post


Link to post
Share on other sites
bryan-hadaway

Wait, so what everyone is saying is that it rotates just fine when you press the arrows, but doesn't auto-rotate? It's not suppose to auto-rotate. This might be a future feature addition, but as of right now it would be a customization. Thanks, Bryan

Share this post


Link to post
Share on other sites
style

Mine does not rotate at all, even when I click the arrows

Share this post


Link to post
Share on other sites
optionease

Bryan, in the PP Settings, Carousel Settings, there is option for: Carousel Animation Speed Set the time it takes to scroll Carousel Animation Speed More Info The speed of the scroll animation as string in milliseconds (e.g. 800 for .8 seconds). If set to 0, animation is turned off. When I setup for NextGen Gallery, it does not auto rotate and next and previous buttons just show 1st image from the NextGen Gallery. When set to Post Featured Images (Default), all the images rotate when next and previous buttons are selected but still no auto rotate.

Share this post


Link to post
Share on other sites
bryan-hadaway

Ah yes, these are bleeding edge features. Let's have a developer take a look at this issue... Thanks, Bryan

Share this post


Link to post
Share on other sites
optionease

I fixed this problem by installing the NextGen Gallery and then Imagerotator plugin by the same author. On your Carousel Page, select NextGen Gallery, enter the ID of the Gallery and then setup all the options you want under the NextGen Gallery Settings area and upload your images to the gallery. Only problem with this approach is that Platform Pro Carousel page adds forward and back arrows that do not work right. I think we should be able to use the NextGen Carousel on a normal page and just put the few words of code to activate the rotating images without the broken arrows. Not sure have not tried that yet.

Share this post


Link to post
Share on other sites
bryan-hadaway

Thanks for helping Eric, first karma point. Thanks, Bryan

Share this post


Link to post
Share on other sites
thehungryhousewives

Do you want something similar to this: TheHungryHousewives I have the carousel scrolling through my post images. This code is in my section.carousel.php file.

		function section_head() { ?>
		<script type="text/javascript">
		/* <![CDATA[ */
		var $j = jQuery.noConflict();
	
		function mycarousel_initCallback(carousel)
		{
			// Disable autoscrolling if the user clicks the prev or next button.
				carousel.buttonNext.bind('click', function() {
				carousel.startAuto(0);
			});
	
			carousel.buttonPrev.bind('click', function() {
				carousel.startAuto(0);
			});
	
			// Pause autoscrolling if the user moves with the cursor over the clip.
				carousel.clip.hover(function() {
				carousel.stopAuto();
				}, function() {
				carousel.startAuto();
			});
		};
	
		$j(document).ready(function () {
		$j(".thecarousel").show();
		$j(".thecarousel").jcarousel({
		wrap: 'circular',
		visible: <?php e_pagelines('carousel_display_items', 9); ?>,
		easing: 'swing',
		scroll: <?php e_pagelines('carousel_scroll_items', 6); ?>,
		animation: 2000,
	
		initCallback: mycarousel_initCallback,
		auto: 2
	
			});
			$j(".jcarousel-prev, .jcarousel-next").disableTextSelect();
		});
		/* ]]> */
	</script>
	
	<?php }

Share this post


Link to post
Share on other sites
eborg9

I have the same problem. Images not rotation when you click the arrows. Did anyone come up with a fix yet?

Share this post


Link to post
Share on other sites
charloub

I guess I "am not knowing here" My gallery is not rotating. I am using the Nextgen feature. Disabled other plugins. I see Bryan's response that it is not suppose to rotate. So why are we asked to put in speed if you know that it will not auto rotate? Shouldn't there be better documentation?

Share this post


Link to post
Share on other sites
ablova

Has anyone other than Eric been able to solve this issue, I've tried that solution and still no rotation. Thanks.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×