Tự động check ghi nhớ khi đăng nhập user thành viên vbb 4.x

  • Thread starter Thread starter AdminAdmin is verified member.
  • Start date Start date
Admin

AdminAdmin is verified member.

Well-Known Member
Staff member
Administrator
Bạn vào Templates của style tìm trong header
Tìm :
PHP:
<label for="cb_cookieuser_navbar"><input type="checkbox"  name="cookieuser" value="1" id="cb_cookieuser_navbar"  class="cb_cookieuser_navbar" accesskey="c" tabindex="103" />  {vb:rawphrase remember_me}</label>
thay thế bằng :
PHP:
<label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" id="cb_cookieuser_navbar" class="cb_cookieuser_navbar" accesskey="c" tabindex="103" checked="checked" /> {vb:rawphrase remember_me}</label>

Còn nếu muốn khi click chuột tự động xóa dòng đăng nhập nick thì :
Tìm :
PHP:
<input type="text" class="textbox<vb:if  condition="!$username"> default-value</vb:if>"  name="vb_login_username" id="navbar_username" size="10" accesskey="u"  tabindex="101" value="<vb:if condition="$username">{vb:raw  username}<vb:else />{vb:rawphrase username}</vb:if>" />                      <input type="password" class="textbox"  tabindex="102" name="vb_login_password" id="navbar_password" size="10"  />
Thay thế bằng :
PHP:
<input type="text" class="textbox<vb:if  condition="!$username"> default-value</vb:if>"  name="vb_login_username" id="navbar_username" size="10" accesskey="u"  tabindex="101" value="<vb:if condition="$username">{vb:raw  username}<vb:else />{vb:rawphrase username}</vb:if>"   onclick="if(this.value=='{vb:raw username}')this.value='';"  onblur="if(this.value=='')this.value='{vb:raw username}';" />                      <input type="password" class="textbox"  tabindex="102" name="vb_login_password" id="navbar_password" size="10"  onclick="if(this.value=='{vb:rawphrase password}')this.value='';"  onblur="if(this.value=='')this.value='{vb:rawphrase password}';"  />
 

Facebook Comments

Similar threads

Admin
Replies
0
Views
911
AdminAdmin is verified member.
Admin
cuongpro9x
Replies
1
Views
1K
vietpro2008
V
Admin
Replies
0
Views
2K
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
2K
AdminAdmin is verified member.
Admin
Back
Top