When I edit the file php file for making new theme, I edit the file DefaultThemePlugin.inc.php
// Register theme options
$this->addOption('typography', 'radio', array(
'label' => 'plugins.themes.default.option.typography.label',
'description' => 'plugins.themes.default.option.typography.description',
'options' => array(
'notoSans' => 'plugins.themes.default.option.typography.notoSans',
'notoSerif' => 'plugins.themes.default.option.typography.notoSerif',
'notoSerif_notoSans' => 'plugins.themes.default.option.typography.notoSerif_notoSans',
'notoSans_notoSerif' => 'plugins.themes.default.option.typography.notoSans_notoSerif',
'lato' => 'plugins.themes.default.option.typography.lato',
'lora' => 'plugins.themes.default.option.typography.lora',
'lora_openSans' => 'plugins.themes.default.option.typography.lora_openSans',
)
));
$this->addOption('baseColour', 'colour', array(
'label' => 'plugins.themes.default.option.colour.label',
'description' => 'plugins.themes.default.option.colour.description',
'default' => '#1E6292',
));
The theming guide gives a good source, but does not mention if I should change the above code.
plugins.themes.default.option
to something else
OJS version 3.0.2
Thanks