Hello Everyone, I recently updated my system to the latest version. I lost some of the customization I had done. I am having trouble changing my, "Add News," page. In the past, I had Title, Article (Main Body), Summary, and Category expanded. After the update, they are contracted or hidden. I tried uploading the old files I have stored from before the update to the JS folder. Nothing seems to restore the old settings which leads me to think it's something in the Database. Anyone have an idea on how to expand those sections of the Add News page in the Admin?
Thank you
Have look at config.php
, you'll see this block of code which should be what you're looking for.
// Default options for the add news form
$newsform_options['toggle_archive'] = 0; // 0 = Collapse archive options, 1 = Expand archive options
$newsform_options['toggle_date'] = 0; // 0 = Collapse date options, 1 = Expand date options
$newsform_options['toggle_summary'] = 0; // 0 = Collapse summary textbox, 1 = Expand summary textbox
$newsform_options['toggle_comments'] = 0; // 0 = Collapse comments options, 1 = Expand comments options
$newsform_options['toggle_categories'] = 0; // 0 = Collapse category options, 1 = Expand category options
$newsform_options['toggle_article'] = 1; // 0 = Collapse article textbox, 1 = Expand article textbox
$newsform_options['never_archive'] = 1; // 0 = Never archive is not selected, 1 = Never archive is selected
$newsform_options['allow_comments'] = 1; // Default comment options. 0 = No, 1 = Yes, 2 = Needs approval