Jump to content
View in the app

A better way to browse. Learn more.

IPBMafia.ru - поддержка Invision Community, релизы, темы, плагины и приложения

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Silence

Актив
  • Регистрация

  • В сети

Everything posted by Silence

  1. Silence replied to Ryo's тема in Moderating
    Для групп – всего 2 решения 😋
  2. Silence replied to Ryo's тема in Moderating
    Теперь это имеет эффект (Overlay Effect) .... Форумы видны, но не читаются ..... но если это display:none... они не будут видны нужным вам группам
  3. Silence replied to Ryo's тема in Moderating
    Да ... Если CSS изменен, определенные форумы не будут видны определенным группам.
  4. Silence replied to Ryo's тема in Moderating
    В css - display:none
  5. Silence replied to Ryo's тема in Moderating
    Ban Members From Forums 4.3.0.tar Ban Members From Forums 4.3.0.tar Исправлена опечатка в скрипте и ошибка в PHP 8.
  6. Если вы хотите сделать это для определенных групп, вы можете использовать это руководство. и вместо цвета границы использовать ваши изображения в качестве фона
  7. Перейти > Админ > Темы > Редактировать HTMl и CSS > Нажмите «Новый» и выберите HTMLTemplate. следуйте следующему скриншоту: Найдите шаблон и вставьте этот код: <script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script> <link href='https://fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'> <div class='wrapInner'> <a class="square" href="#"> <div class="burgerwrap"> <span></span> <span></span> <span></span> </div> </a> <a href="#" class="boton"> Fantastic </a></div> <script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script id="rendered-js" > $(window).ready(function () { $(".boton").wrapInner("<div class=botontext></div>"); $(".botontext").clone().appendTo($(".boton")); $(".boton").append( '<span class="twist"></span><span class="twist"></span><span class="twist"></span><span class="twist"></span>' ); $(".twist").css("width", "25%").css("width", "+=3px"); }); </script> сохранять Измените ссылки и текст по своему усмотрению. Перейти > Админ > Темы > Редактировать HTMl и CSS > CSS > core > global > framework > global.css и вставьте этот код внизу .boton { width: 200px; height: 50px; display: block; position: relative; } .botontext { position: absolute; height: 100%; width: 100%; z-index: 1; text-align: center; line-height: 50px; font-family: 'Montserrat', sans-serif; font-size: 12px; text-transform: uppercase; } .twist { display: block; height: 100%; width: 25%; position: relative; float: left; margin-left: -4px; } .twist:before { content: ""; width: 100%; height: 100%; background: #fed5a9; bottom: 100%; position: absolute; transform-origin: center bottom 0px; transform: matrix3d(1, 0, 0, 0, 0, 0, -1, -0.003, 0, 1, 0, 0, 0, 0, 0, 1); -webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */ } .twist:after { content: ""; position: absolute; width: 100%; top: 100%; height: 100%; background: #9f7f5e; transform-origin: center top 0px; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.003, 0, -50, 0, 1); -webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */ } .boton:hover .twist:before { background: #fff; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0.003, 0, 50, 0, 1); } .boton:hover .twist:after { background: #dedae1; transform: matrix3d(1, 0, 0, 0, 0, 0, -1, 0.003, 0, 1, 0, 0, 0, 0, 0, 1); } .boton .twist:nth-of-type(1) { margin-left: 0; } .boton .twist:nth-of-type(1):before, .boton .twist:nth-of-type(1):after { transition-delay: 0s; } .boton .twist:nth-of-type(2):before, .boton .twist:nth-of-type(2):after { transition-delay: 0.1s; } .boton .twist:nth-of-type(3):before, .boton .twist:nth-of-type(3):after { transition-delay: 0.2s; } .boton .twist:nth-of-type(4):before, .boton .twist:nth-of-type(4):after { transition-delay: 0.3s; } .boton .botontext:nth-of-type(1) { color: #3d3b40; bottom: 100%; transform-origin: center bottom 0px; transform: matrix3d(1, 0, 0, 0, 0, 0, -1, -0.003, 0, 1, 0, 0, 0, 0, 0, 1); -webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */ } .boton:hover .botontext:nth-of-type(1) { transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0.003, 0, 50, 0, 1); } .boton .botontext:nth-of-type(2) { color: #fff; top: 100%; transform-origin: center top 0px; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.003, 0, -50, 0, 1); -webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */ } .boton:hover .botontext:nth-of-type(2) { transform: matrix3d(1, 0, 0, 0, 0, 0, -1, 0.003, 0, 1, 0, 0, 0, 0, 0, 1); } /*MENU*/ .square { border: 1px solid #9f7f5e; height: 26px; width: 26px; display: block; margin: 40px auto; transform: rotate(45deg); overflow: hidden; -webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */ } .square .burgerwrap { height: 18px; width: 21px; transform: rotate(-45deg); padding-left: 3px; padding-top: 78px; -webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */ } .square:hover { transform: rotate(135deg); border: 1px solid #fff; } .square:hover .burgerwrap { transform: rotate(-135deg) } .square span { height: 2px; width: 14px; background: #9f7f5e; display: block; margin-bottom: 2px; -webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */ } .square span:after { content: ""; height: 2px; width: 14px; position: absolute; background: #fff; left: -19px; -webkit-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -moz-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); -o-transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); transition: all 500ms cubic-bezier(0.970, 0.000, 0.395, 0.995); /* custom */ } .square:hover span { margin-left: 26px; } .square:hover span:after { left: 5px; } .square span:nth-of-type(1), .square span:nth-of-type(1):after { transition-delay: 0.1s; } .square span:nth-of-type(2), .square span:nth-of-type(2):after { transition-delay: 0.2s; } .square span:nth-of-type(3), .square span:nth-of-type(3):after { transition-delay: 0.3s; } сохранять Перейти > Админ > Темы > Редактировать HTMl и CSS > Шаблоны > globalTemplate и вставьте этот код куда хотите: {template="BotonRus" app="core" group="global" params=""} Ето все ...
  8. 💨https://invisiondevs.com/files/file/30-yookassa-payment-gateway/ Но для скачивания у вас должна быть лицензия.
  9. Перейдите в файл и попробуйте удалить пустое пространство. Иногда эта проблема возникает из-за пустого места в открывающем теге PHP /var/www/u2766279/data/www/pgrust.online/applications/core/extensions/core/Queue/MoveMembers.php но по-прежнему рекомендуется использовать PHP 8.1. ... вы можете проверить в админ панели - система - поддержка - получить поддержку:
  10. upgrading.html upgradeAvailable.php upgradeAvailableCic.php upgradeStarted.php extract.php extractCic.php lang.php dav.php Но обязательно сделайте резервную копию conf_global.dist.php (нулевой размер) Я думаю это из IPB 3
  11. Silence replied to Dobrochas's тема in Interface
    (BIM) Pro Stats_1.3.3.xml (BIM) Pro Stats_1.3.3.xml
  12. Не работает... у меня ошибка
  13. 1. Нажмите на эту ссылку alternative to CAPTCHA .......
  14. Вот как добавить Turnstile Cloudflare для CAPTCHA: 1. Нажмите на эту ссылку альтернативы CAPTCHA затем нажмите Get Started For Free 2. Затем нажмите Add site : 3. Заполните поля : Site name , Domain , Widget Mode и нажмите - Crate(Создавать) .... 4.Там ты получишь Ключ сайта и Секретный ключ ... 5. Зайдите в свою админ панель > темы > Редактировать HTML и CSS > core > global > forms и найти: captchaInvisible captchaKeycaptcha captchaRecaptcha captchaRecaptcha2 6. Зайдите в каждый из них и замените содержимое следующим: <div id="example-container" class="cf-turnstile" data-sitekey="Ваш_Ключ_сайта" data-callback="javascriptCallback"></div> <script src="https://challenges.cloudflare.com/turnstile/v0/api.js?onload=onloadTurnstileCallback" defer></script> <script> window.onloadTurnstileCallback = function () { turnstile.render('#example-container', { sitekey: '<Ваш_Ключ_сайта>', callback: function(token) { console.log(`Challenge Success ${token}`); }, }); };</script> 7. Замените Ваш_Ключ_сайта с Ваш ключ, который вы сгенерировали ранее. 8. Зайдите в свою админ панель > члены > МОДЕРАЦИЯ КОНТЕНТА > Spam Prevention и выбери Invisible , reCAPTCHA , reCAPTCHA V2 или keyCAPTCHA. 9. Введите ключ сайта и секретный ключ и сохраните. 10. ... Вот и все - Вот результат с моего сайта:
  15. Silence replied to rustav's тема in Administration
    pmviewer-4.0.7.tar

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.