MyBB Community Forums

Full Version: already selected this option "Hide your email from other members"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello.

i use mybb 1.10 (with italian translation).

i want that when people register in my forum there is already selected this option "Hide your email from other members"

what i must do?

i hope that you understand me. please speak more info in easy english, i'm italian and i dont speak very well english :-)

Open the template member_register and search for:
Quote:<input type="checkbox" name="hideemail" id="hideemail" value="yes" $hideemailcheck />
Replace with:
<input type="checkbox" name="hideemail" id="hideemail" value="yes" checked="checked" />
and if i want to put this modification by wwwroot/forum/member.php?

at the moment thi is my member.php:

$allownoticescheck = "checked=\"checked\"";
$hideemailcheck = "";
$emailnotifycheck = "checked=\"checked\"";
$receivepmscheck = "checked=\"checked\"";
$pmpopupcheck = "";
$pmnotifycheck = "checked=\"checked\"";
$invisiblecheck = "";
$emailpmnotifycheck = "checked=\"checked\"";


but "Hide your email from other members" bosx is not selected.

what i must do?
Replace
$hideemailcheck = "";
with:
$hideemailcheck = "checked=\"checked\"";