Quote:
Originally Posted by t18ftw
hi, anyone know how to show only in the first post (the question) ?
|
after 4 hours searching...
Quote:
Originally Posted by Ted S
Actually there's a better way to reduce server load with this...
Open up the XML file and find:
Code:
if($this->registry->options['helpans_hidefirst'] AND $this->post['postid'] == $this->thread['firstpostid']){
$show['helpfulanswer'] = false;
$show['rate_helpfulanswer'] = false;
}
Change that to:
Code:
if($this->post['postid'] != $this->thread['firstpostid']){
$show['helpfulanswer'] = false;
$show['rate_helpfulanswer'] = false;
}
Now only the first post will show ratings.
|