morpheus2matrix, is it possible to add the following:
1) Remove
tabindex='1' used for the username field (in viewtopic_body.tpl)?
2) Hide the whole Quick Reply block when user is NOT allowed to reply (forum/topic locked, permission to reply or not admin)?
For request 2, I imagine the PHP condition would be:
Code: Select all
if ( ( ( $is_auth['auth_reply'] ) && ( $forum_topic_data['forum_status'] <> FORUM_LOCKED ) && ( $forum_topic_data['topic_status'] <> TOPIC_LOCKED ) ) || $userdata['user_level'] == ADMIN )
However, it requires nested template switches. I have done it, though. ...just tell me, and I post the code here ...if you wish.