How to remove the line “Current time in the forum” or / and “Time zone”.
For what? Yes, just for free space or really an eyesore.
Open the index_body.html file in the theme template
Find:
<p><!– IF S_USER_LOGGED_IN –>{LAST_VISIT_DATE}<!– ELSE –>{CURRENT_TIME}<!– ENDIF –></p>
<!– IF U_MCP –><p>{CURRENT_TIME} <br />[ <a href=”/{U_MCP}”>{L_MCP}</a> ]</p><!– ELSEIF S_USER_LOGGED_IN –><p>{CURRENT_TIME}</p><!– ENDIF –>
Comment out the lines responsible for displaying the current time and/or time zone and/or displaying the last visit for registered users and/or …
Personally, this is what I got:
<p><!– IF S_USER_LOGGED_IN –><!–{LAST_VISIT_DATE}–><!– ELSE –><!–{CURRENT_TIME}–><!– ENDIF –></p>
<!– IF U_MCP –><p><!–{CURRENT_TIME}–> <br />[ <a href=”/{U_MCP}”>{L_MCP}</a> ]</p><!– ELSEIF S_USER_LOGGED_IN –><p><!–{CURRENT_TIME}–></p><!– ENDIF –>