function zen_settings($saved_settings, $subtheme_defaults = array()) {
Actualy this should display a form with various options ... But WHERE ? I don't see it anywhere in theme configuration
And in zen-classix, beside mannually adding zen-fixed.css in theme-settings.php, where it is suposed to be the web page configuration with this form :
$form = array();
$form['zen_classic_fixed'] = array(
'#type' => 'checkbox',
'#title' => t('Use fixed width for theme'),
'#default_value' => $settings['zen_classic_fixed'],
'#description' => t('The theme should be centered and fixed at 960 pixels wide.'),
);
Comments
Comment #1
johnalbinSee the optional steps #4-5 on the installation instructions: http://drupal.org/node/201422
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #3
bwynants commentedDon't see them either. I did the extra steps and they still don't appear.
However adding
include_once 'theme-settings.php';
to the template.php file of my own sub theme showed the settings.
When I don't include that file (theme-settings.php ) I see no other place where the file gets included....
a bug? or a missing step?
Comment #4
johnalbinIf you have installed and enabled the Theme Settings API module, it will automatically include your sub-theme's theme-settings.php file when you go to admin/build/themes/settings/SUBTHEME
Comment #5
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.