Howdy,
I'm using Drupal 7.8 with 7.x-1.3 of content glider.
I'm experience a lot of issues with the way the content "slides". It works fine for first two, and then performs two slides rapidly. Also the prev/next buttons only cycle through 2 of the slides, not all of them.
you can take a look here
http://bbamtees.com/drupal/featured-swag
Any Ideas? Thanks,
-Sam

Comments

mluzg’s picture

I have the same problem, same CG version but with Drupal 7.12.
Sam, I visited your page, and it seems to work fine... how did you solve it?
Thank you all.

Luz

trouble.tribbles’s picture

Hey Luz.
I switched to DDBLOCK :)
http://drupal.org/project/ddblock

mluzg’s picture

It's good to have an option :)
As I couln't find it then, I tried to fix it... and I think I did. Somewhere I read the problem was the ID of content toggler: having two (or more) glidders on the same page with the same content toggler's ID.

First, I edited content_glider.tpl.php, line #1

<div id="p-select-<?php print $glider_id; ?>" class="glidecontenttoggler">
<a href="#" class="prev">Prev</a>
  <a href="#" class="toc">1</a> 
  <a href="#" class="toc">2</a> 
  <a href="#" class="toc">3</a> 
  <a href="#" class="toc">4</a> 
  <a href="#" class="toc">5</a> 
<a href="#" class="next">Next</a>
</div><div id="Glider<?php print $glider_id; ?>" class="glidecontentwrapper" style="height:<?php print $height; ?><?php print $height_unit; ?>" >
<?php print $glider_items; ?>
</div>

(of course, tpl saved on my templates theme's folder)

The problem is that I had to edit content_glider.module:

line #318: $output_head .= 'togglerid: "p-select", //ID of toggler container'."\n";
I added $glider_id to p-select:

$output_head .=  'gliderid: "Glider' . $glider_id . '", //ID of main glider container'."\n";
$output_head .=  'contentclass: "glidecontent", //Shared CSS class name of each glider content'."\n";
$output_head .=  'togglerid: "p-select-' . $glider_id . '", //ID of toggler container'."\n";
$output_head .=  'remotecontent: "", //Get gliding contents from external file on server? "filename" or "" to disable'."\n";

I'm not completely sure if I had to edit any other line (it was almost a month ago).
I hope this could help anyone.
Thanks!

vako’s picture

I am using Drupal 6 with the same issue and the solution above doesn't apply.
The Dynamic Block module, suggested above, is too hard to implement. I wish someone will take over this project and maintain it properly. Seemed abandoned.