I found no slider not even any picture at all nor on my site, nor on the Danlnad-Demosite, nor any setting to configure the slider in the backend nor any constructive hint in the documentation, which nevertheless seen quite rich and well done for Drupal 6.
Does anyone know if this theme is useable with its Slider in Drupal7 in anyway?
best
fahl5

Comments

danpros’s picture

Title: Can't find any Slider at all neither in my Drupal7 nor in the Demosite » Adding the slideshow slider for Danland 7.x

Hi,

To add the slider you can do this
1. Add the slider value in page.tpl.php

<?php if($is_front): ?>
<div id="slide-pager-wrapper">
	<div id="slide-pager"></div>
</div>
<?php endif; ?>

2. Modify the jquery cycle script in scripts folder

jQuery(document).ready(function($) {
    $('.slideshow').cycle({
		fx: 'fade' , timeout: 8000, pager: '#slide-pager', delay: 2000});
});

The rest is CSS.

Dan

fahl5’s picture

Thank you!
Steffen

danpros’s picture

Status: Active » Closed (fixed)

You are welcome! :)

I will close this one.

Dan