Hi,

when I open the settings page for the theme, the slide 3 headline is overwritten with the text from the slide 3 description.

thanks
Rich

Comments

richH’s picture

Hi,

I think the problem is in theme-settings.php line 80:

Current code:

  $form['clean_settings']['slideshow']['slide3']['slide3_head'] = array(
    '#type' => 'textfield',
    '#title' => t('Slide Headline'),
    '#default_value' => theme_get_setting('slide3_desc','clean_theme'),
  );

the correction in line 80 should be:

 '#default_value' => theme_get_setting('slide3_head','clean_theme'),

hope this helps
Rich

devsaran’s picture

Thanks Rich.. I am fixing it

devsaran’s picture

Version: 7.x-1.0 » 7.x-1.2
Status: Active » Closed (fixed)

It is Fixed..