Not sure this is the best solution for doing this, but it works for me.
This will add autolinker function to the news content on your vbadvanced CMPS
in modules/news.php
Find:
PHP Code:
if ($mod_options['portal_news_maxchars'] AND strlen($news['message']) > $mod_options['portal_news_maxchars'])
{
$news['message'] = substr($news['message'], 0, strrpos(substr($news['message'], 0, $mod_options['portal_news_maxchars']), ' ')) . '...' . construct_phrase($vbphrase['read_more'], $vboptions['bburl'], $news['threadid'], $session['sessionurl']);
}
After Add:
PHP Code:
$news['message'] = process_gal_text($news['message']);
Make sure you add this after or else it will count the replaced text including the hyperlinking HTML as the text length and you will end up with very small news posts.
Hope this helps