If you are talking about the Recent Threads widget (and I'm wondering if you really are since you say you don't have that type), then open /packages/vbcms/widgets/recentthreads.php and find each of these areas and change them:
Find:
PHP Code:
" . (vB::$vbulletin->options['avatarenabled'] ? ",avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline,customavatar.width AS avwidth,customavatar.height AS avheight" : "") . "
Change to:
PHP Code:
" . (vB::$vbulletin->options['avatarenabled'] ? ",avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline,customavatar.width AS avwidth,customavatar.height AS avheight" : "") . ", thread.views
Find:
PHP Code:
$thread['time'] = vbdate(vB::$vbulletin->options['timeformat'], $thread['dateline']);
Change to:
PHP Code:
$thread['time'] = vbdate(vB::$vbulletin->options['timeformat'], $thread['dateline']);
$thread['views'] = vb_number_format($thread['views']);
And then open the template vbcms_widget_recentthreads_page and add this where you want it:
HTML Code:
{vb:rawphrase views}: {vb:raw thread.views}
This will only work if you really are talking about the widget of type Recent Threads.