Quote:
Originally Posted by Kwikms
Great mod. Maybe this question was asked bevore. If so I am sorry, but I didnt go throuth all 75 pages.
I want to use it with a little modification. I just want it to work in the FIRST post. How can this be done, what do I need to modify?
I got a forum about movie mistakes and I want to use this mod so that ppl can rate "yes" if they agree that it is a mistake or "no" if they dont agree.
|
I found an easy way. I enabled "Hide On First Post" and changed plug-in "check if user can rate thread" line
// may end up disabling this all for the first post
if($this->registry->options['helpans_hidefirst'] AND $this->post['postid'] == $this->thread['firstpostid']){
to
// may end up disabling this all for the first post
if($this->registry->options['helpans_hidefirst'] AND $this->post['postid'] != $this->thread['firstpostid']){
Thats it