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

johnalbin’s picture

Category: bug » support
Status: Active » Fixed

See the optional steps #4-5 on the installation instructions: http://drupal.org/node/201422

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

bwynants’s picture

Version: 5.x-1.0-beta2 » 5.x-1.x-dev
Category: support » bug
Status: Closed (fixed) » Postponed (maintainer needs more info)

Don'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?

johnalbin’s picture

Status: Postponed (maintainer needs more info) » Fixed

If 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

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.