Fixed!
I had two issues I needed to spot and fix, both regarding adjustments needed to make this advanced mod rewrite work with
Stargate Portal:
1)
Stargate gives you a JS folder inside your top styles directory. This js folder contains a forum_fn.js file that exists along with the forum_fn.js files inside the template folder of each of your prosilver based style folders. The edits for styles/prosilver/template/forum_fn.js for this mod need to also be done to the styles/js/forum_fn.js file as well in order for it to work with
Stargate Portal.
2) I did indeed do the prosilver overall_header.html edits, but this one:
- Code: Select all
#
#-----[ FIND ]------------------------------------------
#
var onload_functions = new Array();
var onunload_functions = new Array();
#
#-----[ AFTER, ADD ]------------------------------------------
#
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
var seo_delim_start = '{SEO_START_DELIM}';
var seo_static_pagination = '{SEO_SATIC_PAGE}';
var seo_ext_pagination = '{SEO_EXT_PAGE}';
// www.phpBB-SEO.com SEO TOOLKIT END
I did twice. The reason?
Stargate has an edit that puts this:
- Code: Select all
/**
* New function for handling multiple calls to window.onload and window.unload by pentapenguin
*/
var onload_functions = new Array();
var onunload_functions = new Array();
into the overall_header.html file. I must have went back to recheck my edits and found this second
- Code: Select all
var onload_functions = new Array();
That is from
Stargate and thought that I had omitted the edit for mod rewrite that goes after the
- Code: Select all
var onload_functions = new Array();
in the vanilla phpbb3 instalation. It of course doesn't need to go in the pentapenguin script from
Stargate.
I still can't seem to make the jump to page link work in subSilver though. It redirects back to the forum index, but that will have to be another breakthrough for another day.
Thanks.