OK - I figured it out.
The plugins are hardcoded with the pn_* prefix on the module name. Also, there is a problem in the stylesheet for the smilies.
so:
1) open /pnForum/pntemplates/plugins/function.bbsmile.php and change all pn_bbsmile to bbsmile
2) open /pnForum/pntemplates/plugins/function.plainbbcode.php and change all
pn_bbcode to
bbcode
3) open /bbsmile/pnstyle/style.css and comment out this line:
.bbsmile_smilies {
/* display: none; */
}
for #1 & #2, I used function overrides and put the new functions in /config/plugins/
for #3, I used a stylesheet override and put it in my theme.
Now I'll just need to remember to pull them out later when the problems get fixed.
I've also found a problem with the javascript in modules/bbsmile/pnjavascript/dosmilie.js
Error: document.getElementsByClassName
("bbsmile_smilies").
each is not a
functionSource
file: http:
//www.westernbands.net/modules/bbsmile/pnjavascript/dosmilie.jsLine:
4
I don't know how to fix this one - anyone know JS well enough?
edited by: craigh, Apr 22, 2009 - 05:08 PM