I think that's still the best image resizer. Thanks for your work.
Has anyone been able to enable this for group discussions? I've tried creating a plugin hooked to group_discussionbit_display_complete with the following code:
Code:
if($vbulletin->options['sevenskins_imageresizer_enabled']) {
$message['message'] = preg_replace('/<img src="([^"]*)" border="0" alt="" \/>/', '<img src="\\1" border="0" alt="" onload="NcodeImageResizer.createOn(this);" />', $message['message']);
}
but it doesn't seem to work. Any help will be appreciated.