segamarius
02-06-2011, 11:54 AM
I want this for vbulletin 4.
http://www.vbulletin.com/forum/showthread.php/101595-How-To-Display-a-Notice-for-Users-awaiting-Email-confirmation
Display a notice for users awaiting email confirmation
You can display a notice on your forums for users whose accounts are awaiting email confirmation. Go to your:
Admin CP -> Styles & Templates -> Style Manager -> ? ? -> header
Add this code below the $spacer_open variable:
<!-- content table -->
$spacer_open
<if condition="$bbuserinfo['usergroupid'] == 3">
<br />
<div align="left" style="color: red; background-color: white; border: 1px solid black; padding:2px">Your account is awaiting email confirmation. Please click the activation link in the email you were sent, or visit <a href="register.php?$session[sessionurl]do=requestemail">this page</a> to resend the activation email. If you did not receive the email then it's possible it was blocked by your email client. In this case you can either disable your blocker software or enter a new email address in <a href="profile.php?$session[sessionurl]do=editpassword">your profile</a>.</div>
</if>
$_phpinclude_output
This way users know when their accounts are awaiting confirmation and they know what their options are.
http://www.vbulletin.com/forum/showthread.php/101595-How-To-Display-a-Notice-for-Users-awaiting-Email-confirmation
Display a notice for users awaiting email confirmation
You can display a notice on your forums for users whose accounts are awaiting email confirmation. Go to your:
Admin CP -> Styles & Templates -> Style Manager -> ? ? -> header
Add this code below the $spacer_open variable:
<!-- content table -->
$spacer_open
<if condition="$bbuserinfo['usergroupid'] == 3">
<br />
<div align="left" style="color: red; background-color: white; border: 1px solid black; padding:2px">Your account is awaiting email confirmation. Please click the activation link in the email you were sent, or visit <a href="register.php?$session[sessionurl]do=requestemail">this page</a> to resend the activation email. If you did not receive the email then it's possible it was blocked by your email client. In this case you can either disable your blocker software or enter a new email address in <a href="profile.php?$session[sessionurl]do=editpassword">your profile</a>.</div>
</if>
$_phpinclude_output
This way users know when their accounts are awaiting confirmation and they know what their options are.