Quote:
Originally Posted by reddyink
1) Which template has this code?
|
Actually gave you the wrong code; you will need to open the source XML file and
remove:
Code:
if($this->registry->options['helpans_hidefirst'] AND $this->post['postid'] == $this->thread['firstpostid']){
$show['helpfulanswer'] = false;
$show['rate_helpfulanswer'] = false;
}
Quote:
Originally Posted by reddyink
2) I only want this enabled in certain forums and not others where I want this for posts too.
|
Then replace the code with:
Code:
if($this->post['postid'] != $this->thread['firstpostid'] AND ($this->forum['helpfulanswerbits'] == 1 OR $this->forum['helpfulanswerbits'] == 2) ){
$show['helpfulanswer'] = false;
$show['rate_helpfulanswer'] = false;
}
Where X and Y are forum IDs to show ratings for only in the first thread.
Quote:
Originally Posted by reddyink
The ability to customize the AJAX message shown after a post is rated.
The ability to edit all text and messages through phrases.
|
You can edit any phrases through the phrase manager. You will find links to some in the admin options, others can be searched for.