MyBB Entregrasyonu - Tema Düzenleme İşlemleri
Bul :
<a href="member.php?action=logout&logoutkey={$mybb->user['logoutkey']}">{$lang->index_logout}</a> |
İle Değiştir :
<a href="http://siteniz.com/index.php?action=logout">{$lang->index_logout}</a> |
Header Templates > header_welcomeblock_guest
Bul :
{$mybb->settings['bburl']}/member.php?action=login
İle Değiştir :
{$mybb->settings['bburl']}
Bul :
{$mybb->settings['bburl']}/member.php?action=register
İle Değiştir :
http://siteniz.com/index.php?do=register
Bul :
action="{$mybb->settings['bburl']}/member.php"
MyBB Integrator 1.4.3 ve üstü için
İle Değiştir
action="{$mybb->settings['bburl']}/login.php"
MyBB Integrator 1.4.2 ve altı için
İle Değiştir
action="http://siteniz.com/index.php"
Bul :
{$mybb->settings['bburl']}/member.php?action=lostpw
İle Değiştir
http://siteniz.com/index.php?do=lostpassword
Bul :
name="quick_username"
İle Değiştir
name="login_name"
Bul :
name="quick_password"
İle Değiştir
name="login_password"
Bul :
<input name="action" type="hidden" value="do_login" />
İle Değiştir :
<input name="login" type="hidden" id="login" value="submit" />
Bu Kısımlar Default temada var. Her temada olmayabilir..
Bul ve sil :
<input name="url" type="hidden" value="" />
Bul ve sil :
<script type="text/javascript">
$("#quick_login input[name='url']").val($(location).attr('href'));
</script>
Header Templates > header_welcomeblock_member
Bul :
{$mybb->settings['bburl']}/member.php?action=logout&logoutkey={$mybb->user['logoutkey']}
İle Değiştir :
http://siteniz.com/index.php?action=logout
PM'ler için entegrasyon yok. Forumdan atılan PM ancak forumda görünür. Eğer forumda PM kullanımını kaldırmak isterseniz :
Bul ve sil :
<a href="{$mybb->settings['bburl']}/private.php">{$lang->welcome_pms}</a>
Ayrıca ayarlardan kapatınız.
User Control Panel Templates > usercp_email
Bununla değiştir :
<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->change_email}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" border="0" align="center">
<tr>
{$usercpnav}
<td valign="top">
{$errors}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->change_email}</strong></td>
</tr>
<tr>
<td class="trow1" width="100%"><font color="red">E-Mail değiştirme işlemini sadece Portal üzerinden yapabilirsiniz.</font></td>
</tr>
</table>
</td>
</tr>
</table>
{$footer}
</body>
</html>
User Control Panel Templates > usercp_password
Bununla değiştir :
<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->change_password}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" border="0" align="center">
<tr>
{$usercpnav}
<td valign="top">
{$errors}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->change_password}</strong></td>
</tr>
<tr>
<td class="trow1" width="100%"><font color="red">Şifre değiştirme işlemini sadece Portal üzerinden yapabilirsiniz.</font></td>
</tr>
</table>
</td>
</tr>
</table>
{$footer}
</body>
</html>
User Control Panel Templates > usercp_changename
Bununla değiştir :
<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->change_username}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" border="0" align="center">
<tr>
{$usercpnav}
<td valign="top">
{$errors}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->change_username}</strong></td>
</tr>
<tr>
<td class="trow1" width="100%"><font color="red">Kullanıcı adı değiştirme yapılamıyor.</font></td>
</tr>
</table>
</td>
</tr>
</table>
{$footer}
</body>
</html>