Create a new plugin;
Hook Location: threadbit_display
Execution Order: 500
Plugin PHP Code:
PHP Code:
if ($show['member']) {
if ($threadinfo['postuserid'] == $vbulletin->userinfo['userid']) {
$threadinfo['views'] = '?';
}
}
To hide threads everywhere to everyone, use this PHP code instead:
PHP Code:
$threadinfo['views'] = '?';
If you don't want '?' to show in place of the views, change the text inside the quotes to whatever you see fit.