Hi, in my previous version off the Simple Press Forums (before 4.5) I had the Reply Box at the top of my forum. I had done this to move some code in the sf-topic-view.php file. Andy had told me what and how and I could change this for a long time. Now I would like to update my forum to the new version but can’t find how to change it. Can you please assist me with this.
The code that I moved in the 4.4 version was:
# Display Add Post form (hidden)
if((!$topiclock) || ($current_user->forumadmin))
{
if($current_user->sfreply && $sfvars[‘displaymode’] == ‘posts’)
{
$out.= ‘<a id=”dataform”></a>’.”n”;
$out.= sf_add_post($sfvars[‘forumid’], $sfvars[‘topicid’], $topic[‘topic_name’], $topic[‘topic_status_set’], $topic[‘topic_status_flag’], $topic[‘user_id’], $topic[‘topic_subs’], $topic[‘topic_watches’]);
}
}