if its loading sp-forum.js and not sp-forum-dev.js, its not loading the one you modified… please show us what you added to wp-config.php and show us where you added it… make sure you have valid quote chars… sometimes if you copy it from formatted html you may get the wrong one… always best when copying code to use the copy raw button…
I have already coded up a enhancement for the reply button to always scroll to the form…
in the same js file, find these lines (sorry, dont have line number as I am on travel)…
$(‘#’ + editorId).slideDown();
if (!window.location.hash) location.href = location.href + ‘#spEditFormAnchor’;
spj.editorOpen(formType);
after those, just add:
$(‘html, body’).animate({scrollTop: $(‘#’ + editorId).offset().top – sp_platform_vars.headpadding}, 500);
which of course assumes you can get it to load the right file…