Помощь новым администраторам

Объявление

Нас уже посетили: Счетчик посещений Counter.CO.KZ - бесплатный счетчик на любой вкус!

Помощь новым администраторам

Новости форума
Переделала дизайн форума

Главная админка
Нiko4k@




Правая рука
Dark

Левая рука
@leNo4K@

Модераторы
Идет набор

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » Помощь новым администраторам » Скрипты » Замена надписей Регистрация, Вход и т.д.


Замена надписей Регистрация, Вход и т.д.

Сообщений 1 страница 9 из 9

1

Чаще всего вы видите, что на некоторых форумах вместо Входа написано "Вернись", вместо Регистрации написано "Стань одним из нас" и т.д. и т.п. Я дам вам скрипты чтобы воспользоваться этой функцией.

0

2

Код:
<script>
<!--
indexof="СВОЁ СЛОВО"
str = document.getElementById("navindex").innerHTML
pos = str.indexOf("Форум")
document.getElementById("navindex").innerHTML=str.substring(0,pos)+indexof+str.substring(pos+5,str.length-1)
-->
</script>


<script>
<!--
userof="СВОЁ СЛОВО"
str = document.getElementById("navuserlist").innerHTML
if( (pos=str.indexOf("Участники")) != -1 )
document.getElementById("navuserlist").innerHTML=str.substring(0,pos)+userof+str.substring(pos+9,str.length-1)
-->
</script>


<script>
<!--
pravilof="СВОЁ СЛОВО"
str = document.getElementById("navrules").innerHTML
pos = str.indexOf("Правила")
document.getElementById("navrules").innerHTML=str.substring(0,pos)+pravilof+str.substring(pos+14,str.length-1)
-->
</script>


<script>
<!--
findof="СВОЁ СЛОВО"
str = document.getElementById("navsearch").innerHTML
pos = str.indexOf("Поиск")
document.getElementById("navsearch").innerHTML=str.substring(0,pos)+findof+str.substring(pos+5,str.length-1)
-->
</script>


<script>
<!--
faseof="СВОЁ СЛОВО"
str = document.getElementById("navprofile").innerHTML
pos = str.indexOf("Профиль")
document.getElementById("navprofile").innerHTML=str.substring(0,pos)+faseof+str.substring(pos+14,str.length-1)
-->
</script>


<script>
<!--
pismaof="СВОЁ СЛОВО"
str = document.getElementById("navpm").innerHTML
pos = str.indexOf("Сообщения")
document.getElementById("navpm").innerHTML=str.substring(0,pos)+pismaof+str.substring(pos+9,str.length-1)
-->
</script>


<script>
<!--
godof="СВОЁ СЛОВО"
str = document.getElementById("navadmin").innerHTML
pos = str.indexOf("Администрирование")
document.getElementById("navadmin").innerHTML=str.substring(0,pos)+godof+str.substring(pos+17,str.length-1)
-->
</script>


<script>
<!--
valiof="СВОЁ СЛОВО"
str = document.getElementById("navlogout").innerHTML
pos = str.indexOf("Выход")
document.getElementById("navlogout").innerHTML=str.substring(0,pos)+valiof+str.substring(pos+5,str.length-1)
-->
</script>


<script>
<!--
vxodiof="СВОЁ СЛОВО"
str = document.getElementById("navlogin").innerHTML
pos = str.indexOf("Войти")
document.getElementById("navlogin").innerHTML=str.substring(0,pos)+vxodiof+str.substring(pos+5,str.length-1)
-->
</script>


<script>
<!--
regof="СВОЁ СЛОВО"
str = document.getElementById("navregister").innerHTML
pos = str.indexOf("Регистрация")
document.getElementById("navregister").innerHTML=str.substring(0,pos)+regof+str.substring(pos+18,str.length-1)
-->
</script>

+1

3

Регистрация

Код:
<script>
<!--
regof="Ваше слово " 
str = document.getElementById("navregister").innerHTML
pos = str.indexOf("Регистрация")
document.getElementById("navregister").innerHTML=str.substring(0,pos)+regof+str.substring(pos+18,str.length-1)
-->
</script>

Вход

Код:
<script>
<!--
vxodiof="Ваше слово" 
str = document.getElementById("navlogin").innerHTML
pos = str.indexOf("Войти")
document.getElementById("navlogin").innerHTML=str.substring(0,pos)+vxodiof+str.substring(pos+5,str.length-1)
-->
</script>

Выход

Код:
<script>
<!--
valiof="Ваше слово" 
str = document.getElementById("navlogout").innerHTML
pos = str.indexOf("Выход")
document.getElementById("navlogout").innerHTML=str.substring(0,pos)+valiof+str.substring(pos+5,str.length-1)
-->
</script>

Форум

Код:
<script>
<!--
indexof="Ваше слово" 
str = document.getElementById("navindex").innerHTML
pos = str.indexOf("Форум")
document.getElementById("navindex").innerHTML=str.substring(0,pos)+indexof+str.substring(pos+5,str.length-1)
-->
</script>

Участники

Код:
<script>
<!--
userof="Ваше слово" 
str = document.getElementById("navuserlist").innerHTML
if( (pos=str.indexOf("Участники")) != -1 )
document.getElementById("navuserlist").innerHTML=str.substring(0,pos)+userof+str.substring(pos+9,str.length-1)
-->
</script>

Правила

Код:
<script>
<!--
pravilof="Ваше сово" 
str = document.getElementById("navrules").innerHTML
pos = str.indexOf("Правила")
document.getElementById("navrules").innerHTML=str.substring(0,pos)+pravilof+str.substring(pos+14,str.length-1)
-->
</script>

Поиск

Код:
<script>
<!--
findof="Ваше слово" 
str = document.getElementById("navsearch").innerHTML
pos = str.indexOf("Поиск")
document.getElementById("navsearch").innerHTML=str.substring(0,pos)+findof+str.substring(pos+5,str.length-1)
-->
</script>

Профиль

Код:
<script>
<!--
faseof="Ваше слово" 
str = document.getElementById("navprofile").innerHTML
pos = str.indexOf("Профиль")
document.getElementById("navprofile").innerHTML=str.substring(0,pos)+faseof+str.substring(pos+14,str.length-1)
-->
</script>

Сообщения

Код:
<script>
<!--
pismaof="Ваше слово" 
str = document.getElementById("navpm").innerHTML
pos = str.indexOf("Сообщения")
document.getElementById("navpm").innerHTML=str.substring(0,pos)+pismaof+str.substring(pos+9,str.length-1)
-->
</script>

Администрирование

Код:
<script>
<!--
godof="Ваше слово" 
str = document.getElementById("navadmin").innerHTML
pos = str.indexOf("Администрирование")
document.getElementById("navadmin").innerHTML=str.substring(0,pos)+godof+str.substring(pos+17,str.length-1)
-->
</script>

0

4

А куда вставлять?

0

5

Ksjune4k@
В HTML-верх

0

6

Нiko4k@
Спасибки!!!!! https://forumupload.ru/uploads/0002/25/06/8547-4.gif

0

7

Ksjune4k@
Не за что.

0

8

Нiko4k@ а у меня не хочет работать

0

9

Настюньчик
Попробуй в HTML-низ

0


Вы здесь » Помощь новым администраторам » Скрипты » Замена надписей Регистрация, Вход и т.д.


Рейтинг форумов | Создать форум бесплатно