Community

How To Change Slide Images On Premium Responsive Theme

Greetings guys,I just want to say that I am grateful to Devsaran for the wonderful free themes.As a novice,I haven't quite figured out how to change the slide images on the premium responsive theme,to remove the images it comes with and place my own.Thanks in advance for replies

Comments

It's quite simple: just

It's quite simple: just replace the default imgs you'll find in the template's directory with your owns. That's it!

Hello,
I am trying to increase the number of images on the 1st page slide show. I have added the commands for two extra pictures on the theme_settings.php file and I can see the option of two extra pictures but it does not work. Should I make some modifications on other files(such as js);
This is what is added on the theme_settins.php:

$form['resp_settings']['slideshow']['slide4'] = array(
'#type' => 'fieldset',
'#title' => t('Slide 4'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['resp_settings']['slideshow']['slide4']['slide4_desc'] = array(
'#type' => 'textfield',
'#title' => t('Slide Description'),
'#default_value' => theme_get_setting('slide4_desc','responsive'),
);
$form['resp_settings']['slideshow']['slide4']['slide4_url'] = array(
'#type' => 'textfield',
'#title' => t('Slide URL'),
'#default_value' => theme_get_setting('slide4_url','responsive'),
);

$form['resp_settings']['slideshow']['slide5'] = array(
'#type' => 'fieldset',
'#title' => t('Slide 5'),
'#collapsible' => TRUE,
'#collapsed' => TRUE,
);
$form['resp_settings']['slideshow']['slide5']['slide5_desc'] = array(
'#type' => 'textfield',
'#title' => t('Slide Description'),
'#default_value' => theme_get_setting('slide5_desc','responsive'),
);
$form['resp_settings']['slideshow']['slide5']['slide5_url'] = array(
'#type' => 'textfield',
'#title' => t('Slide URL'),
'#default_value' => theme_get_setting('slide5_url','responsive'),
);

nobody click here