Перейти к содержанию

Xontero

Актив
  • Постов

    303
  • Зарегистрирован

  • Победитель дней

    8

Активность репутации

  1. Насмешил
    Xontero отреагировална пост vitaliitihanov в Авторизация через вк и другие соц.сети   
    Всё у тя нормально. в настройках регулируй, стоит ли тебе включать эту функцию или нет.
  2. Лайк
    Xontero отреагировална пост Orpheus в Nexxe Theme (Dark/Light)   
    Theme updated to the latest version available, thanks to @LoveHate
  3. Лайк
    Xontero отреагировална пост Orpheus в convert MyISAM to InnoDB   
    Sure thing, good luck
  4. Спасибо
    Xontero получил реакцию от bon1 в Nexxe Theme (Dark/Light)   
    got it...
    nexxe 1.1.1.2.xml
     
     
    @M4FIA_RaGE update
    nexxe 1.1.1.2.xml
  5. Лайк
    Xontero отреагировална пост Orpheus в convert MyISAM to InnoDB   
    You have to generate the queries first using the above and then run them in MySQL CLI(Console).
    I did it for my forum the same way. I used phpMyAdmin console inside the same database where I had most of the database tables in MyISAM
  6. Лайк
    Xontero отреагировална пост Orpheus в convert MyISAM to InnoDB   
    How to grab all the tables which are using MyISAM storage engine?
    SELECT CONCAT('ALTER TABLE ', TABLE_SCHEMA, '.', TABLE_NAME,' ENGINE=InnoDB;') FROM Information_schema.TABLES WHERE TABLE_SCHEMA = 'DBNAME' AND ENGINE = 'MyISAM' AND TABLE_TYPE = 'BASE TABLE' Where DBNAME is the database name, then copying all the output queries you've to run in console and hit CTRL+Enter
    Done! hope that helps
  7. Спасибо
    Xontero получил реакцию от Orpheus в Nexxe Theme (Dark/Light)   
    got it...
    nexxe 1.1.1.2.xml
     
     
    @M4FIA_RaGE update
    nexxe 1.1.1.2.xml
  8. Лайк
    Xontero получил реакцию от Zero108 в Nexxe Theme (Dark/Light)   
    got it...
    nexxe 1.1.1.2.xml
     
     
    @M4FIA_RaGE update
    nexxe 1.1.1.2.xml
  9. Лайк
    Xontero получил реакцию от mamyka в Nexxe Theme (Dark/Light)   
    got it...
    nexxe 1.1.1.2.xml
     
     
    @M4FIA_RaGE update
    nexxe 1.1.1.2.xml
  10. Лайк
    Xontero отреагировална пост Exception в Переливающийся ник   
    В интернете полно примеров
    Это в css:
    .username__shine { background: linear-gradient(to right, #edc65c, #ff7600, #bd2828, #ed5cc7, #5c86ed, #edc65c); background-size: 200% auto; color: #edc65c; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-fill-color: transparent; -webkit-animation: shine 3s linear infinite alternate; animation: shine 3s linear infinite alternate; } @-webkit-keyframes shine { to { background-position: 200% center; } } @keyframes shine { to { background-position: 200% center; } } Для нужной группы указываем форматирование:
    <span class='username__shine'></span>  
  11. Лайк
    Xontero получил реакцию от or1k в Полоска репутации   
    no but you can use a condition
    <i class="{{if $comment->author()->pp_reputation_points >= 0}}fa fa-plus{{else}}fa fa-minus{{endif}}"></i> <i class="{{if $comment->author()->pp_reputation_points > 1}}fa fa-plus{{elseif $comment->author()->pp_reputation_points < 0}}fa fa-minus{{endif}}"></i>  
  12. Лайк
    Xontero отреагировална пост Dobrochas в Как сделать "якоря" по тексту и вот такое меню Гайд-меню???   
    Я так понимаю автор блока с якорями спрашивал помощи тут и смог это сделать без приложения https://invisioncommunity.com/forums/topic/453642-pages-how-to-use-anchors-in-editor/
     
  13. Лайк
    Xontero отреагировална пост by_ix в Advanced Server List   
    LoveHate обнови.
    aXen.Advanced.Server.List.1.2.3.tar
  14. Лайк
    Xontero получил реакцию от Diapazon в Advanced Server List   
    View File Advanced Server List
    Другие свойства:
    Задайте собственные поля для сервера: Имя, Собственное имя, IP, Собственный IP, URL статистики, URL ТВ, URL голосования, URL форума Выделите для сервера Специальный значок для нового сервера Скрытие владельцев серверов в кнопке Свиток, которым может управлять пользователь Цветовое наполнение игроков Задний привод Ленивая загрузка в иконках img Таблица в 2 столбца, которыми может управлять пользователь Требования  🏷️
    PHP 7.2+ Bzip2  - используется для сжатых ответов A2S Совместимые серверы  💻
    Counter-Strike 1.6 Counter-Strike: Global Offensive Discord Minecraft Teamspeak 3 Submitter Xontero Submitted 03/08/21 Category Interface Language English  
  15. Лайк
    Xontero отреагировална пост Exception в mobile search onipsfocus themes   
    Найти шаблон includeJS в конец вставить:
    <script type="text/javascript"> $(document).ready(function(){ if (matchMedia) { var focus_pageWidth = window.matchMedia( "(min-width: 980px)" ); focus_pageWidth.addListener(WidthChange); WidthChange(focus_pageWidth); } function WidthChange(focus_pageWidth) { if (focus_pageWidth.matches) { $("#elSearchWrapper").prependTo(".focus-search"); } else { $("#elSearchWrapper").prependTo(".focus-mobile-search"); } } // Toggle class $('[data-class]').on( "click", function(event) { event.preventDefault(); var classContent = $(this).attr('data-class'); var classModifiers = classContent.split(' '); var className = classModifiers[0]; var modifyClass = classModifiers[1]; if (classModifiers[2]){ var targetElement = classModifiers[2]; } else { var targetElement = 'html'; } if (modifyClass === 'add'){ $(targetElement).addClass(className); } else if (modifyClass === 'remove'){ $(targetElement).removeClass(className); } else { $(targetElement).toggleClass(className); } }); }); </script> Найти шаблон custom.css в конец вставить:
    /* Mobile search */ .focus-mobile-search { padding-top: 70px; background: rgba(31,33,37,0.9); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); position: fixed; top: 0; left: 0; bottom: 0; right: 0; z-index: 6000; display: none; justify-content: center; align-items: flex-start; overflow: auto; } .focus-mobile-search__close { position: absolute; top: 15px; right: 15px; color: #fff; cursor: pointer; width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; font-size: 24px; border-radius: 4px; } .focus-mobile-search #elSearch { display: block !important; } .display--focus-mobile-search .focus-mobile-search { display: flex; } Найти в шаблоне mobileNavBar:
    <li class='ipsJS_show'> <a href='{url="app=core&module=search&controller=search" seoTemplate="search"}'><i class='fa fa-search'></i></a> </li> Заменить на:
    <li class='ipsJS_show'> <a href='{url="app=core&module=search&controller=search" seoTemplate="search"}' data-class='display--focus-mobile-search'><i class='fa fa-search'></i></a> </li> В конец шаблона mobileNavBar после тега </ul> добавить:
    <div class='focus-mobile-search'> <div class='focus-mobile-search__close' data-class='display--focus-mobile-search'><i class="fa fa-times" aria-hidden="true"></i></div> </div>

    Now ... give me your money! 😀
  16. Лайк
    Xontero получил реакцию от Zero108 в Nexxe Theme (Dark/Light)   
    edit userbar template and delete this buttom
  17. Печаль
    Xontero отреагировална пост by_ix в mobile search onipsfocus themes   
    то, чего так не хватает в стандартном ипс.
  18. Лайк
    Xontero получил реакцию от by_ix в mobile search onipsfocus themes   
    hi every one
    if you open ipsfocus themes with your mobile and touch search Icon it opens by pop up.
    try this: https://ipsfocus.net/themes/
    can someone help me to do this?
     
     
  19. Лайк
    Xontero отреагировална пост Dobrochas в Расширенные цитаты   
    В custom.css темы:
    .article-content blockquotecastom { display: block; min-height: 64px; text-align: justify; background: #f7f7f7; font-weight: normal; padding: 20px 60px 20px 60px; line-height: 1.5; font-style: normal; position: relative; border: none; } .article-content blockquotecastom:before { position: absolute; left: 20px; top: 30px; content: "\201C"; font-size: 75px; color: #ccc; line-height: 45px; } .article-content blockquotecastom:after { position: absolute; right: 20px; bottom: 0; content: "\201D"; font-size: 75px; color: #ccc; line-height: 25px; }  
  20. Лайк
    Xontero получил реакцию от by_ix в Similar Content on Post Screen   
    you're right.
  21. Лайк
    Xontero получил реакцию от by_ix в Similar Content on Post Screen   
    please give permission for all groups
  22. Лайк
    Xontero получил реакцию от Respected в Similar Content on Post Screen   
    please give permission for all groups
  23. Насмешил
    Xontero отреагировална пост by_ix в Similar Content on Post Screen   
    сюда б добавить такое, чтоб человеки не создавали миллион одинаковых тем с одними и теми же вопросами.
  24. Лайк
    Xontero отреагировална пост Exception в Как вставить Widget между разделами форума   
    1. Создать блок на основе плагина виджета
    2. В шаблоне forums->front->index->index найти цикл:
    {{foreach \IPS\forums\Forum::roots() as $category}} перед закрывающим тегом этого цикла {{endforeach}} вставить:
    {{if $category->_id == MY_ID}}{block="BLOCK_KEY"}{{endif}} MY_ID - id категории форума после которого нужно вставить блок
    BLOCK_KEY - ключ созданного блока
  25. Насмешил
    Xontero отреагировална пост Desti в External Links Rich Embed   
    <meta charset="windows-1251"> - в 21-м веке работать в этой кодировке... днище...
×
×
  • Создать...