форум vBSupport.ru > vBulletin > Old vB versions (3.0.x & 2.x.x) > vBulletin 3.6.x > Hacks, mods and scripts [3.6.x]
Register Меню vBsupport Изображения Files Manager О рекламе Today's Posts Search
  • Родная гавань
  • Блок РКН снят
  • Premoderation
  • For English speaking users
  • Каталог Фрилансеров
  • If you want to buy some product or script
  • Администраторам
VBsupport перешел с домена .ORG на родной .RU Ура! Пожалуйста, обновите свои закладки - VBsupport.ru
Блок РКН снят, форум доступен на всей территории России, включая новые терртории, без VPN
На форуме введена премодерация ВСЕХ новых пользователей

Почта с временных сервисов, типа mailinator.com, gawab.com и/или прочих, которые предоставляют временный почтовый ящик без регистрации и/или почтовый ящик для рассылки спама, отслеживается и блокируется, а так же заносится в спам-блок форума, аккаунты удаляются
for English speaking users:
You may be surprised with restriction of access to the attachments of the forum. The reason is the recent change in vbsupport.org strategy:

- users with reputation < 10 belong to "simple_users" users' group
- if your reputation > 10 then administrator (kerk, Luvilla) can decide to move you into an "improved" group, but only manually

Main idea is to increase motivation of community members to share their ideas and willingness to support to each other. You may write an article for the subject where you are good enough, you may answer questions, you may share vbulletin.com/org content with vbsupport.org users, receiving "thanks" equal your reputation points. We should not only consume, we should produce something.

- you may:
* increase your reputation (doing something useful for another members of community) and being improved
* purchase temporary access to the improved category:
10 $ for 3 months. - this group can download attachments, reputation/posts do not matter.
20 $ for 3 months. - this group can download attachments, reputation/posts do not matter + adds eliminated + Inbox capacity increased + files manager increased permissions.

Please contact kerk or Luvilla regarding payments.

Important!:
- if your reputation will become less then 0, you will be moved into "simple_users" users' group automatically.*
*for temporary groups (pre-paid for 3 months) reputation/posts do not matter.
Уважаемые пользователи!

На форуме открыт новый раздел "Каталог фрилансеров"

и отдельный раздел для платных заказов "Куплю/Закажу"

Если вы хотите приобрести какой то скрипт/продукт/хак из каталогов перечисленных ниже:
Каталог модулей/хаков
Ещё раз обращаем Ваше внимание: всё, что Вы скачиваете и устанавливаете на свой форум, Вы устанавливаете исключительно на свой страх и риск.
Сообщество vBSupport'а физически не в состоянии проверять все стили, хаки и нули, выкладываемые пользователями.
Помните: безопасность Вашего проекта - Ваша забота.
Убедительная просьба: при обнаружении уязвимостей или сомнительных кодов обязательно отписывайтесь в теме хака/стиля
Спасибо за понимание
 
 
 
 
КотЪ
Администратор
Неадекватный
 
КотЪ's Avatar
Default Рецепты на форуме 3.6.7
4

Хак создан для публикации рецептов, но мне сразу показалось, что при минимальной модификации, его можно использовать под что угодно, например - для файловых релизов, видео, мп3...

____________________

Installation:
Templates to add:3
Templates to edit:3
Plugins Added: 14
Phrases Added: 12
Quires ran: 9

Instructions:

Import the Product .xml
Edit templates
Editpost:

Find:


Code:
<!-- / subject field -->
Add Under:


Code:
<if condition="$foruminfo[enable_recipe]">
$editrecipe 
<else />Find:
Code:
        $messagearea
        <!-- / message area -->

        $posticons
        
            </td>
        </tr>
        </table>
        
        </div>
    </div>
Add After:


Code:
</if>
Showthread:

Find:

Code:
Code:
 $NavbarAdd Under:
Code:
Code:
<if condition="$foruminfo[enable_recipe]">
$recipe
</if>
Find:

Code:
Code:
<a name="poststop" id="poststop"></a>
Add Under:

Code:
Code:
<if condition="$no_posts">
<else />
Find:

Code:
Code:
<div id="posts">$postbits<div id="lastpost"></div></div>
Add Above:

Code:
Code:
</if>
Newthread:

Find:

Code:
Code:
<!-- / subject field -->
Add Under:

Code:
Code:
<if condition="$foruminfo[enable_recipe]">
$newrecipe
<else />
Find:

Code:
Code:
  <!-- / message area -->

        $imagereg

        $posticons
        
            </td>
        </tr>
        </table>
        
        </div>
    </div>
Add After:

Code:
Code:
</if>
Postbit(_legacy):

Add at Top:



Code:
<if condition="$post[postcount] == 1 && in_array($thread['forumid'], array($vboptions[recipe_forums]))">
<if condition="$show['attachments']">
        <!-- attachments -->
            <div style="padding:$stylevar[cellpadding]px">
            
            <if condition="$show['thumbnailattachment']">
                <fieldset class="fieldset">
                    <legend>$vbphrase[attached_thumbnails]</legend>
                    <div style="padding:$stylevar[formspacer]px">
                    $post[thumbnailattachments]
                    </div>
                </fieldset>
            </if>
        
            <if condition="$show['imageattachment']">
                <fieldset class="fieldset">
                    <legend>$vbphrase[attached_images]</legend>
                    <div style="padding:$stylevar[formspacer]px">
                    $post[imageattachments]
                    </div>
                </fieldset>
            </if>
            
            <if condition="$show['imageattachmentlink']">
                <fieldset class="fieldset">
                    <legend>$vbphrase[attached_images]</legend>
                    <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                    $post[imageattachmentlinks]
                    </table>
                    </fieldset>
            </if>
            
            <if condition="$show['otherattachment']">
                <fieldset class="fieldset">
                    <legend>$vbphrase[attached_files]</legend>
                    <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                    $post[otherattachments]
                    </table>
                </fieldset>
            </if>
            
            <if condition="$show['moderatedattachment']">
                <fieldset class="fieldset">
                    <legend>$vbphrase[attachments_pending_approval]</legend>
                    <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
                    $post[moderatedattachments]
                    </table>
                </fieldset>        
            </if>
            
            </div>
        <!-- / attachments -->
        </if>
<else />
Add at End:

Code:
Code:
</if>
Find:

Code:
Code:
<div>$vbphrase[posts]: $post[posts]</div>
Add After

Code:
Code:
<div>$vbphrase[recipe_stats]: $post[recipe_stats]</div>

Configure

Go to ACP -> Forums & Moderators -> Forum Manager -> Pick a forum and at bottom it has a new yesno setting
Go to ACP -> vBulletin Options -> Recipe Mod Database -> Enter the forumid's used for your forum
Attached Thumbnails
pecep.jpg  
Attached Files
File Type: xml product-recipe_whitemike.xml (17.8 KB, 62 views)
Bot
Yandex Bot Yandex Bot is online now
 
Join Date: 05.05.2005
Реклама на форуме А что у нас тут интересного? =)
 
 
DJVoY
Продвинутый
 
DJVoY's Avatar
Default
0

Пасибки громадное!!!! Вот еще б на русском))))) было б круто!!!!
А если б еще к тому же на русском и модифицированный под МР3!!!! Ух, это была бы БОМБА!!!!
 
 
Mopo
Простоузер
Default
0

А мне бы вполне хватило обычного перевода этого хака на русский. Уж очень хочется посетителей своего кулинарного раздела побаловать...
 
 
CRAZY_MIHAN
Знаток
 
CRAZY_MIHAN's Avatar
Default
0

Чувствую себя ебанутым, но приспособил под онлайн-игры))
 
 
Мик
Эксперт
 
Мик's Avatar
Default
0

Quote:
Originally Posted by CRAZY_MIHAN View Post
Чувствую себя ебанутым, но приспособил под онлайн-игры))
Новый хак от Кота - "Установи фичу и почувствуй себя ебнутым"!!!
 
 
CRAZY_MIHAN
Знаток
 
CRAZY_MIHAN's Avatar
Default
0

КотЪ, за, что же ты так меня?
 
 
КотЪ
Администратор
Неадекватный
 
КотЪ's Avatar
Default
0

Йа??
 
 
Rulez
Знаток
 
Rulez's Avatar
Default
0

вы не любите кошек?... да вы их просто готовить не умеете! ;-)

задумка хака интересная. а чтоб он сцуко полностью сам ставился через импорт xml никак?... а то каждый раз при обновлении ручками прописывать куеву хучу фрагметов хака влом...
 
 
CRAZY_MIHAN
Знаток
 
CRAZY_MIHAN's Avatar
Default
0

Quote:
Originally Posted by КотЪ View Post
Йа??
Слухай, а давай забаним Мика? Подчёркиваю, Мика, а не Миху
Прикольный хак, теперь гномы адена по этим рецептам пушки мутят
 
 
Мик
Эксперт
 
Мик's Avatar
Default
0

Quote:
Originally Posted by CRAZY_MIHAN View Post
Слухай, а давай забаним Мика? Подчёркиваю, Мика, а не Миху
Прикольный хак, теперь гномы адена по этим рецептам пушки мутят
эээ, ты это брось свои инсинуации
не хорошооо!!!
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off




All times are GMT +4. The time now is 06:17 PM.


Powered by vBulletin® Version 3.5.3
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.