Jump to content

Silence

Актив
  • В сети

  • Количество сообщений

    2 429
  • Reputation

    2,1k Silence's Reputation

Everything posted by Silence

  1. Silence posted пост в теме in Moderating
    Теперь это имеет эффект (Overlay Effect) .... Форумы видны, но не читаются ..... но если это display:none... они не будут видны нужным вам группам
  2. Silence posted пост в теме in Moderating
    Да ... Если CSS изменен, определенные форумы не будут видны определенным группам.
  3. Silence posted пост в теме in Moderating
    В css - display:none
  4. Silence posted пост в теме in Moderating
    Ban Members From Forums 4.3.0.tar Ban Members From Forums 4.3.0.tar Исправлена опечатка в скрипте и ошибка в PHP 8.
  5. Если вы хотите сделать это для определенных групп, вы можете использовать это руководство. и вместо цвета границы использовать ваши изображения в качестве фона
  6. Перейти > Админ > Темы > Редактировать 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=""} Ето все ...
  7. Silence posted пост в теме in Commerce
    💨https://invisiondevs.com/files/file/30-yookassa-payment-gateway/ Но для скачивания у вас должна быть лицензия.
  8. Перейдите в файл и попробуйте удалить пустое пространство. Иногда эта проблема возникает из-за пустого места в открывающем теге PHP /var/www/u2766279/data/www/pgrust.online/applications/core/extensions/core/Queue/MoveMembers.php но по-прежнему рекомендуется использовать PHP 8.1. ... вы можете проверить в админ панели - система - поддержка - получить поддержку:
  9. upgrading.html upgradeAvailable.php upgradeAvailableCic.php upgradeStarted.php extract.php extractCic.php lang.php dav.php Но обязательно сделайте резервную копию conf_global.dist.php (нулевой размер) Я думаю это из IPB 3
  10. Silence posted пост в теме in Interface
    (BIM) Pro Stats_1.3.3.xml (BIM) Pro Stats_1.3.3.xml
  11. Не работает... у меня ошибка
  12. 1. Нажмите на эту ссылку alternative to CAPTCHA .......
  13. Вот как добавить 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. ... Вот и все - Вот результат с моего сайта:
  14. Silence posted пост в теме in Administration
    pmviewer-4.0.7.tar
  15. В шаблон : profile
  16. Silence posted пост в теме in Invision Community 4 Support
  17. Вы показали "Download" ... и widgets - Files feed если вы ищете magazin ... у ACP есть приложение для магазина (Store)
  18. Толко 1.0.0 (aXen) Article System in Pages.zip (aXen) Article System in Pages.zip
  19. Линк ваш форум?
  20. No ... i have different Trim Empty Lines in Posts 1.0.0.xml Trim Empty Lines in Posts 1.0.0.xml
  21. Извинете ... оправено