Okey, i'm trying to figure out how to make it work with the blog, and i did

Only thing is, that i cant figure out how to do
both forum and blog.
So i guess thats where Jase2 comes in
I found out, after a little research, that if i changed this:
PHP Code:
if(defined('NCODE_IMAGERESIZER_INIT') && strtolower(get_class($this)) == 'vb_bbcodeparser' && $this->ncode_imageresizer_do !== false) {
$text = ncode_imageresizer_replace($text);
}
to this:
PHP Code:
if(defined('NCODE_IMAGERESIZER_INIT') && strtolower(get_class($this)) == 'vb_bbcodeparser_blog' && $this->ncode_imageresizer_do !== false) {
$text = ncode_imageresizer_replace($text);
}
And this part:
PHP Code:
$this->ncode_imageresizer_do = false;
if(defined('NCODE_IMAGERESIZER_INIT') && strtolower(get_class($this)) == 'vb_bbcodeparser' && ($forumid != "signature" || $this->registry->options['ncode_imageresizer_resizesignatures'] == '1')) {
if(!empty($parsedtext) && $parsedhasimages) {
$parsedtext = $this->handle_bbcode_img($parsedtext, $dobbimagecode, $parsedhasimages);
$parsedtext = ncode_imageresizer_replace($parsedtext);
$parsedhasimages = false;
} else {
$this->ncode_imageresizer_do = true;
}
}
to this:
PHP Code:
$this->ncode_imageresizer_do = false;
if(defined('NCODE_IMAGERESIZER_INIT') && strtolower(get_class($this)) == 'vb_bbcodeparser_blog' && ($forumid != "signature" || $this->registry->options['ncode_imageresizer_resizesignatures'] == '1')) {
if(!empty($parsedtext) && $parsedhasimages) {
$parsedtext = $this->handle_bbcode_img($parsedtext, $dobbimagecode, $parsedhasimages);
$parsedtext = ncode_imageresizer_replace($parsedtext);
$parsedhasimages = false;
} else {
$this->ncode_imageresizer_do = true;
}
}
it was working in the blog, though not in the forum (doh!) so what we need is to include "vb_bbcodeparser_blog" alongside with "vb_bbcodeparser" and voila!
Jase2! Could you please? My head hurts lol!