MyBB Community Forums

Full Version: Remove date and time completely from the board!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Cause they aren't working well on my board, I like to remove them.

Can someone help me?Big Grin
remove from visibility or remove in function?
Both.

But when nobody can see the data / time, it's fine for me.
So, how should I do that?
well i dont know !! it;s a big procedure if u wanna clear it from all templates Confused!!

u will have to find each place a date appear in , and clear!!

that's my only solution, unless u fnd out a real fix for u timing problem

regards
OK, find a sollution, I think.
With a difference of 2 minutes.

How to force all users to use my timeset?
Heloo there

well to update the timezone for all the previous members run this query from the phpmyadmin

update  mybb_users set timezone= '-1' where timezone !='-1'

-1 is here the time zone, so set it the way u want.
however u may not control the others that easy unless u drodown menu from the registration process by going to the template manager > members templates > member_register

find this and delete it

<fieldset class="trow2">
<legend><strong>$lang->time_offset</strong></legend>
<table cellspacing="0" cellpadding="$theme[tablespace]">
<tr>
<td colspan="2"><span class="smalltext">$lang->time_offset_desc</td>
</tr>
<tr>
<td>$tzselect</td>
</tr>
<tr>
<td valign="top" colspan="2" /><input type="checkbox" name="enabledst" id="enableddst" value="yes" $enabledstcheck />   <span class="smalltext"><label for="enabledstcheck">$lang->enable_dst</label></span>
</tr>
</table>
</fieldset>


and from the user cp options by going to
User CP templates > usercp_options

find and delete this

<tr>
<td><span class="smalltext">$lang->time_offset</span></td>
</tr>
<tr>
<td >$tzselect</td>
</tr>
</table>
<table cellspacing="0" cellpadding="$theme[tablespace]">
<tr>
<td valign="top" width="1"><input type="checkbox" name="dst" id="dst" value="yes" $dstcheck /></td>
<td><span class="smalltext"><label for="dst">$lang->dst</label></span></td>
</tr>

regards
thank you