Admin Post: Javascript for core1 layouts
When we made a bunch of changes to how comment pages worked last summer, it had the side effect of breaking Javascript in core1 layouts, because the scripts now need to be loaded at the end of the document rather than in the head. We have a fix for this now, but because core1 layouts typically override all the main functions, it was impossible to apply automatically, and you will have to edit your layouts individually.
1) Open up your custom layers page
2) Look for the layout you want to update - it will be listed as 'Child of layer 1: LiveJournal S2 Core, v1'. Click 'Edit' for the layout you want to update.

3) Find the

4) Add the line

1) Open up your custom layers page
2) Look for the layout you want to update - it will be listed as 'Child of layer 1: LiveJournal S2 Core, v1'. Click 'Edit' for the layout you want to update.

3) Find the
Page::print() function - you can skim the list of functions quickly in the side bar and click on it to go directly to that function in the editor.
4) Add the line
$this->print_script_tags(); right before the closing </body> tag (outside of any quotes surrounding the closing tag), and then click 'Save & Compile'. You should see no errors in the bottom pane.