The slideshow has support for 3 slides, but I beleive many have the need for 4-5 slides.

Possibility to dynamically add more slides and also to specify the the path to the picture instead of replacing the files slide-image-1.jpg, slide-image-2.jpg, slide-image-3.jpg.

Option for specify height of the slideshow would be nice.

Of course the code can be changed individually, but I think it would be quite easy to implement and make the theme even more popular.

Comments

devsaran’s picture

Status: Active » Closed (duplicate)

You can have more than 3 slides by making slight changes in page.tpl.php

You can also set the height of slide by making some changes in css

I tried to make it as Theme Options. It doesnt work with Drupal.. Somethings has to be achieved through code customization only.

ErikSmits’s picture

Status: Closed (duplicate) » Active

I changed page.tpl.php for a fourth picture for the slideshow and it works fine in the website. The only thing is that the text under the picture and the url for this picture are not set. I like this theme a lot but I think I need a 4th and maybe a 5th picture.

gabesullice’s picture

In order to add text, I believe you also need to adjust the theme-settings.php file. If you search for the following in that file:

  $form['resp_settings']['slideshow']['slide3']['slide3_url'] = array(

    '#type' => 'textfield',

    '#title' => t('Slide URL'),

    '#default_value' => theme_get_setting('slide3_url','responsive'),

  );

you can copy and paste the above just below it after modifying the number of the slide everywhere that a slide or its URL is referred to (eg. 'slide3_url' would become 'slide4_url'). After you do this, go ahead and save, flush your caches, and go into theme settings. You should then be able to add text for a 4th slide.

parth1288’s picture

i have linked my pic in slide u have to change in theme-setting.php file

PJ_’s picture

Issue summary: View changes

when I input

 $form['resp_settings']['slideshow']['slide3']['slide3_url'] = array(

    '#type' => 'textfield',

    '#title' => t('Slide URL'),

    '#default_value' => theme_get_setting('slide3_url','responsive'),

  );

into my theme-settings.php file and then go back to add text to the fourth slide I get a http 500 error. how do I fix that??