templates hard-codes issues:
1- in newbb_thread.html
<div class="comUserStat" align="left">
Should be changed to
<div class="comUserStat">
Quote:
I also would like to have the option to choose both editors myself (fast and normal reply). The fast one now is xoopseditor but I would like it to be the plain text one, it's the fast reply option so why bother users with all those editor options?
You are totally right and this is what a customer needs.
Alfred promise to move all configurations to the database in the newer newbb versions. but at this time you can add an option for quick reply editor very easy in 2 steps like below:
1- newbb/include/plugin.php add this after default editor:
// Set the default editor for quick reply
$customConfig["editor_quick_default"] = "textarea";
2- in newbb/viewtopic.php change the editor
$quickform = ( !empty($xoopsModuleConfig["editor_quick_default"]) ) ? $xoopsModuleConfig["editor_quick_default"] : "textarea";
Quote:
phpBB has a nice pm button at the bottom of every post. When pressed a pm to the given user is opened, with the post text quoted and a link to the forumpost already filled in. I like this, could it be added to newbb?
IMO it can be implemented very easy just by altering the current templates.
A very good feature i really like it.
About your issue with topic type i can not tell anything i didnt have time for test it until now.
Quote:
Why not suspend a user from all forums? At least I would like an option added to do so.
I think this option is just useful for the specific forum moderator that have very limited admin access. you as the website webmaster can ban that user via system module. (eg: ban IP in protector, change the group to "banned group" , ...)
Mamba:
it seems Alfred is not around. could you implement some final solutions in the svn? or you prefer to wait more for the developer response?
edit:
Quote:
@ Alfred:
You removed the imageset feature. IMO it is not good for localization but i should navigate more through newbb 4.3 to say my final view point.
I just found that phppp (DJ) did a fabulous work for localization in newbb.
this change in localization is really fantastic. I wish other module developers can follow this way.
you can set images for your needs just via "themes" folder.
for enabling on all themes:
themes/default/modules/newbb/images/icon
themes/default/modules/newbb/images/language/YOUR_LANG
also you can change images for each theme:
themes/YOUR_THEME/modules/newbb/images/icon
themes/YOUR_THEME/modules/newbb/images/language/YOUR_LANG