In my file includes/class_dm_threadpost.php I wrapped an IF statement around the post count incrementor.
I made if so post counts are not incremented if the thread has certain text in the title.
PHP Code:
if(!strstr(strtoupper($this->info['thread']['title']),"HOWTO")) {
$user->set('posts', 'posts + 1', false);
}
How could I implement this as a plugin so I do not need to keep adding the code everytime I upgrade VB.
Thanks :up: