Arşiv Anasayfa Modifikasyonlar
Sayfalar: 1
Yeni kay1t olma modu( bir çok k1sayol ) By: schizophrenic Date: 22 December 2007, 20:05:20
register.template.php de bu kodu bulun :

:  
// Are they allowed to hide their email?
if ($context['allow_hide_email'])
echo '
<label for="hideEmail"><input type="checkbox" name="hideEmail" id="hideEmail" class="check" /> ', $txt[721], '</label>';

echo '
</td>
</tr><tr>
<td width="40%">
<b>', $txt[81], ':</b>
</td>
<td>
<input type="password" name="passwrd1" size="30" tabindex="', $context['tabindex']++, '" />
</td>
</tr><tr>
<td width="40%">
<b>', $txt[82], ':</b>
</td>
<td>
<input type="password" name="passwrd2" size="30" tabindex="', $context['tabindex']++, '" />
</td>
</tr>';


altaki ile degistirin :

:  
// Are they allowed to hide their email?
if ($context['allow_hide_email'])
echo '
<label for="hideEmail"><input type="checkbox" name="hideEmail" id="hideEmail" class="check" /> ', $txt[721], '</label>';

echo '
</td>
</tr><tr>
<td width="40%">
<b>', $txt[81], ':</b>
</td>
<td>
<input type="password" name="passwrd1" size="30" tabindex="', $context['tabindex']++, '" />
</td>
</tr><tr>
<td width="40%">
<b>', $txt[82], ':</b>
</td>
<td>
<input type="password" name="passwrd2" size="30" tabindex="', $context['tabindex']++, '" />
</td>
</tr>';



// YENİ KAYIT SİSTEMİ by İnaN

 

echo'
<tr>

<td width="40%"><b>', $txt['mes'], ': </b></td>
<td><input type="text" name="location" size="30"  tabindex="', $context['tabindex']++, '"value="', $context['member']['mesaj'], '" /></td>
</tr>


<tr>
<td width="40%">
<b>', $txt['563'], ':</b>
<div class="smalltext">', $txt['565'], ' - ', $txt['564'], ' - ', $txt['566'], '</div>
</td>
<td class="smalltext">
<input type="text" name="bday2" size="2" maxlength="2"  tabindex="', $context['tabindex']++, '"value="', $context['member']['birth_date']['day'], '" />-
<input type="text" name="bday1" size="2" maxlength="2"  tabindex="', $context['tabindex']++, '"value="', $context['member']['birth_date']['month'], '" /> -
<input type="text" name="bday3" size="4" maxlength="4" tabindex="', $context['tabindex']++, '" value="', $context['member']['birth_date']['year'], '" />
</td>
</tr>

<tr>

<td width="40%"><b>', $txt[227], ': </b></td>
<td><input type="text" name="location" size="30"  tabindex="', $context['tabindex']++, '"value="', $context['member']['location'], '" /></td>
</tr>



<tr>
<td width="40%"><b>', $txt[231], ': </b></td>
<td>
<select name="gender" size="1" tabindex="', $context['tabindex']++, '">
<option value="0"></option>
<option value="1"', ($context['member']['gender']['name'] == 'm' ? ' selected="selected"' : ''), '>', $txt[238], '</option>
<option value="2"', ($context['member']['gender']['name'] == 'f' ? ' selected="selected"' : ''), '>', $txt[239], '</option>
</select>
</td>
</tr><tr>
<td colspan="2"><hr width="100%" size="1" class="hrcolor" /></td>
</tr>';
//Wb site bilgileri
echo '
<tr>
<td colspan="2"><hr width="100%" size="1" class="hrcolor" /></td>
</tr>
<tr>
<td width="40%"><b>', $txt['83'], ': </b><div class="smalltext">', $txt['598'], '</div></td>
<td><input type="text" name="websiteTitle" size="50" value="', $context['member']['website']['title'], '" /></td>
</tr><tr>
<td width="40%"><b>', $txt['84'], ': </b><div class="smalltext">', $txt['599'], '</div></td>
<td><input type="text" name="websiteUrl" size="50" value="', $context['member']['website']['url'], '" /></td>
</tr>';


// All the messenger type contact info.
echo '
<tr>
<td width="40%"><b>', $txt['513'], ': </b><div class="smalltext">', $txt['600'], '</div></td>
<td><input type="text" name="ICQ" size="24" value="', $context['member']['icq']['name'], '" /></td>
</tr><tr>
<td width="40%"><b>', $txt['603'], ': </b><div class="smalltext">', $txt['601'], '</div></td>
<td><input type="text" name="AIM" maxlength="16" size="24" value="', $context['member']['aim']['name'], '" /></td>
</tr><tr>
<td width="40%"><b>', $txt['MSN'], ': </b><div class="smalltext">', $txt['smf237'], '</div></td>
<td><input type="text" name="MSN" size="24" value="', $context['member']['msn']['name'], '" /></td>
</tr><tr>
<td width="40%"><b>', $txt['604'], ': </b><div class="smalltext">', $txt['602'], '</div></td>
<td><input type="text" name="YIM" maxlength="32" size="24" value="', $context['member']['yim']['name'], '" /></td>
</tr><tr>
<td colspan="2"><hr width="100%" size="1" class="hrcolor" /></td>
</tr>';


// Show the signature box.
        echo '
                                                        <tr>
                                                                <td width="40%" valign="top">
                                                                        <b>', $txt['imza'], ':</b>
                                                                   
                                                                        <br />';

       
                echo '
                                                                        <input type="button" value="', $txt['spell_check'], '" onclick="spellCheck(\'creator\', \'signature\');" />';

echo '
</td>
<td>
<script language="JavaScript" type="text/javascript">
function bbc_highlight(something, mode)
{
something.style.backgroundImage = "url(" + smf_images_url + (mode ? "/bbc/bbc_hoverbg.gif)" : "/bbc/bbc_bg.gif)");
}
</script>';
// load the post variables
loadLanguage('Post');
// The below array makes it dead easy to add images to this page. Add it to the array and everything else is done for you!
$context['bbc_tags'] = array();
$context['bbc_tags'][] = array(
'bold' => array('code' => 'b', 'before' => '[b]', 'after' => '[/b]', 'description' => $txt[253]),
'italicize' => array('code' => 'i', 'before' => '[i]', 'after' => '[/i]', 'description' => $txt[254]),
'underline' => array('code' => 'u', 'before' => '[u]', 'after' => '[/u]', 'description' => $txt[255]),
'img' => array('code' => 'img', 'before' => '[img]', 'after' => '[/img]', 'description' => $txt[435]),
'email' => array('code' => 'email', 'before' => '[email]', 'after' => '[/email]', 'description' => $txt[258]),
'ftp' => array('code' => 'ftp', 'before' => '[ftp]', 'after' => '[/ftp]', 'description' => $txt[434]),
'face' => array('code' => 'font', 'before' => '[font=Verdana]', 'after' => '[/font]', 'description' => $txt[533]),
'pre' => array('code' => 'pre', 'before' => '[pre]', 'after' => '[/pre]', 'description' => $txt[444]),
'left' => array('code' => 'left', 'before' => '[left]', 'after' => '[/left]', 'description' => $txt[445]),
'center' => array('code' => 'center', 'before' => '[center]', 'after' => '[/center]', 'description' => $txt[256]),
'right' => array('code' => 'right', 'before' => '[right]', 'after' => '[/right]', 'description' => $txt[446]),
'list' => array('code' => 'list', 'before' => '[list]\n[li]', 'after' => '[/li]\n[li][/li]\n[/list]', 'description' => $txt[261]),
);
// Here loop through the array, printing the images/rows/separators!
foreach ($context['bbc_tags'][0] as $image => $tag)
{
// Is there a "before" part for this bbc button? If not, it can't be a button!!
if (isset($tag['before']))
{
// Is this tag disabled?
if (!empty($context['disabled_tags'][$tag['code']]))
continue;

// If there's no after, we're just replacing the entire selection in the post box.
if (!isset($tag['after']))
echo '<a href="javascript:void(0);" onclick="replaceText(\'', $tag['before'], '\', document.forms.creator.signature); return false;">';
// On the other hand, if there is one we are surrounding the selection ;).
else
echo '<a href="javascript:void(0);" onclick="surroundText(\'', $tag['before'], '\', \'', $tag['after'], '\', document.forms.creator.signature); return false;">';

// Okay... we have the link. Now for the image and the closing </a>!
echo '<img onmouseover="bbc_highlight(this, true);" onmouseout="if (window.bbc_highlight) bbc_highlight(this, false);" src="', $settings['images_url'], '/bbc/', $image, '.gif" align="bottom" width="23" height="22" alt="', $tag['description'], '" title="', $tag['description'], '" style="background-image: url(', $settings['images_url'], '/bbc/bbc_bg.gif); margin: 1px 2px 1px 1px;" /></a>';
}
}
echo ' <textarea class="editor" onkeyup="calcCharLeft();" name="signature" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onchange="storeCaret(this);" rows="5" cols="50">', $context['member']['signature'], '</textarea><br />';

       
        // Load the spell checker?
        if ($context['show_spellchecking'])
                echo '
                                                                        <script language="JavaScript" type="text/javascript" src="', $settings['default_theme_url'], '/spellcheck.js"></script>';

        // Some javascript used to count how many characters have been used so far in the signature.
        echo '
                                                                        <script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
                                                                                function tick()
                                                                                {
                                                                                        if (typeof(document.forms.creator) != "undefined")
                                                                                        {
                                                                                                calcCharLeft();
                                                                                                setTimeout("tick()", 1000);
                                                                                        }
                                                                                        else
                                                                                                setTimeout("tick()", 800);
                                                                                }

                                                                                function calcCharLeft()
                                                                                {
                                                                                        var maxLength = ', $context['max_signature_length'], ';
                                                                                        var oldSignature = "", currentSignature = document.forms.creator.signature.value;

                                                                                        if (!document.getElementById("signatureLeft"))
                                                                                                return;

                                                                                        if (oldSignature != currentSignature)
                                                                                        {
                                                                                                oldSignature = currentSignature;

                                                                                                if (currentSignature.replace(/\r/, "").length > maxLength)
                                                                                                        document.forms.creator.signature.value = currentSignature.replace(/\r/, "").substring(0, maxLength);
                                                                                                currentSignature = document.forms.creator.signature.value.replace(/\r/, "");
                                                                                        }

                                                                                        setInnerHTML(document.getElementById("signatureLeft"), maxLength - currentSignature.length);
                                                                                }

                                                                                setTimeout("tick()", 800);
                                                                        // ]]></script>
                                                                </td>
                                                        </tr>';



profil.template.php de bu kodu bulun :
:  
<tr>
<td><b>', $txt[227], ':</b></td>
<td>', $context['member']['location'], '</td>
</tr>
<tr>

altına ekleyin:
:  
<tr>
<td><b>', $txt[mes], ':</b></td>
<td>', $context['member']['mesaj'], '</td>
</tr>
<tr>
profilde gözüksün diyorsanız şunu bulun :
:  
// Show how many posts they have made.
echo '
', $txt[26], ': ', $message['member']['posts'], '<br />
<br />';
altına ekleyin :
:  
meslek by İnaN
echo '
', $txt[mes], ': ', $message['member']['mesaj'], '<br />
<br />';
daha sonra :
index.turkish.php de  bu kodu bul
:  
?>
üstüne ekle :
:  
$txt['83'] = 'Web site Başlığı';
$txt['84'] = 'Web site Adresi';
$txt['imza'] = 'İmza';
$txt['mes'] = 'Meslek';
$txt['598'] = 'Eğer aşağıda bir web adresi belirtmişseniz bu mutlaka eklenmelidir.';
$txt['599'] = 'Bu tam bir adres olmalıdır. (<b>http://</b> eklemelisiniz)';
$txt['602'] = 'Yahoo! Instant Messenger kullanıcı adınız.';
$txt['smf237'] = 'Bu sizin MSN Messenger adresinizdir';
$txt['601'] = 'AOL Instant Messenger kullanıcı adınız.';
$txt['600'] = 'ICQ numaranız.';
$txt['563'] = 'Doğum Tarihi';
$txt['564'] = 'Ay (MM)';
$txt['565'] = 'Gün (DD)';
$txt['566'] = 'Yıl (YYYY)';
$txt['604'] = 'YIM';
$txt['603'] = 'AIM';
$txt['513'] = 'ICQ';

kay1t olurken imza, meslek , yas, dogum tarihi, web site adresi, msn vs.. gibi k1sayollar bulunmaktad1r..

Yeni kay1t olma modu( bir çok k1sayol ) By: PiReSeRHaT Date: 28 January 2008, 22:31:48
Teşekkurler Canım =)
Yeni kay1t olma modu( bir çok k1sayol ) By: S@MSUNLU Date: 29 January 2008, 00:05:48

Yeni kay1t olma modu( bir çok k1sayol ) By: hazar123 Date: 03 February 2008, 12:35:47
:S bi resim ss koysaydın daha iyi olurdu görür yapardık