Jump to content

Leaderboard

  1. JzVolt

    JzVolt

    Vortex


    • Points

      1

    • Posts

      22


  2. mr-pimpen

    mr-pimpen

    Blizzard


    • Points

      1

    • Posts

      1,294


  3. kanv1s

    kanv1s

    Rookie


    • Points

      1

    • Posts

      4


  4. Link

    Link

    Frost


    • Points

      -1

    • Posts

      23


Popular Content

Showing content with the highest reputation on 06/07/2021 in all areas

  1. is this for the form or for the topic its self! you could use the color in the forums section where you made it or you can find the tutorials with css
    1 point
  2. Under your server_ipb table, search the IP. Then you just need to look for what matches in whatever the table its listed and manually delete from there. I believe there's a quicker way to this, but I'm not familiar with phpmyadmin SQL's
    1 point
  3. core -> front -> global -> sidebar All delete and paste this code: {{if (isset( \IPS\Output::i()->sidebar['enabled'] ) and \IPS\Output::i()->sidebar['enabled'] ) && ( ( isset( \IPS\Output::i()->sidebar['contextual'] ) && trim( \IPS\Output::i()->sidebar['contextual'] ) !== '' ) || ( isset( \IPS\Output::i()->sidebar['widgets']['sidebar'] ) && count( \IPS\Output::i()->sidebar['widgets']['sidebar'] ) ) || ( \IPS\Dispatcher::i()->application instanceof \IPS\Application AND \IPS\Dispatcher::i()->application->canManageWidgets() ) )}} <div id='ipsLayout_sidebar' class='ipsLayout_sidebar{$position} {{if !( isset( \IPS\Output::i()->sidebar['contextual'] ) && trim( \IPS\Output::i()->sidebar['contextual'] ) !== '' ) && ( !isset( \IPS\Output::i()->sidebar['widgets']['sidebar'] ) || !count( \IPS\Output::i()->sidebar['widgets']['sidebar'] ) ) && \IPS\Dispatcher::i()->application->canManageWidgets()}}ipsLayout_sidebarUnused{{endif}}' data-controller='core.front.widgets.sidebar'> <div class='ibtFloatSidebar'> {{if isset( \IPS\Output::i()->sidebar['contextual'] ) && trim( \IPS\Output::i()->sidebar['contextual'] ) !== ''}} <aside id="elContextualTools" class='ipsClearfix' {{if isset( \IPS\Output::i()->sidebar['sticky'] )}}data-ipsSticky{{endif}}> {expression="\IPS\Output::i()->sidebar['contextual']" raw="true"} </aside> {{endif}} {{if isset(\IPS\Output::i()->sidebar['widgets']['sidebar']) and count( \IPS\Output::i()->sidebar['widgets']['sidebar'] ) and ( \IPS\core\Advertisement::loadByLocation( 'ad_sidebar' ) ) }} {advertisement="ad_sidebar"} <br><br> {{endif}} {template="widgetContainer" group="global" app="core" params="'sidebar', 'vertical'"} </div></div> {{endif}} <script> // обработчик "прилипания" контента в правой колонке (function(){ var a = document.querySelector('.ibtFloatSidebar'), b = null, K = null, Z = 0, P = 0, N = 0; // если у P ноль заменить на число, то блок будет прилипать до того, как верхний край окна браузера дойдёт до верхнего края элемента, если у N — нижний край дойдёт до нижнего края элемента. Может быть отрицательным числом window.addEventListener('scroll', Ascroll, false); document.body.addEventListener('scroll', Ascroll, false); function Ascroll() { (function(jQuery) { var c = document.querySelector('#ipsLayout_mainArea'), Rc = c.getBoundingClientRect(), Ra = a.getBoundingClientRect(), R1bottom = Rc.bottom; if (b == null) { var Sa = getComputedStyle(a, ''), s = ''; for (var i = 0; i < Sa.length; i++) { if (Sa[i].indexOf('overflow') == 0 || Sa[i].indexOf('padding') == 0 || Sa[i].indexOf('border') == 0 || Sa[i].indexOf('outline') == 0 || Sa[i].indexOf('box-shadow') == 0 || Sa[i].indexOf('background') == 0) { s += Sa[i] + ': ' +Sa.getPropertyValue(Sa[i]) + '; ' } } b = document.createElement('div'); b.className = "stopSticky"; b.style.cssText = s + ' box-sizing: border-box; width: ' + a.offsetWidth + 'px;'; a.insertBefore(b, a.firstChild); var l = a.childNodes.length; for (var i = 1; i < l; i++) { b.appendChild(a.childNodes[1]); } } //просчитываем высоту колонки a.style.height = b.getBoundingClientRect().height + 'px'; a.style.padding = '0'; a.style.border = '0'; var Rb = b.getBoundingClientRect(), Rh = Ra.top + Rb.height, W = document.documentElement.clientHeight, R1 = Math.round(Rh - R1bottom), R2 = Math.round(Rh - W); if (Ra.bottom < R1bottom) { if((Rc.height > Rb.height) /*&& (Rb.height > W)*/) { // проверка того, что высота колонки больше высоты контента if (Rb.height > W) { if (Ra.top < K) { // скролл вниз //console.log('скролл вниз'); if (R2 + N > R1) { // не дойти до низа //if ((Rb.bottom - W + N < 0) && (Rb.top - P < 0)) { // подцепиться if ((parseInt(Rb.bottom) - W + N) <= 0/* && (Rb.top + W < 0)*/) { // подцепиться b.className = 'startSticky'; b.style.top = W - Rb.height - N + 'px'; Z = N + Ra.top + Rb.height - W; } else { b.className = 'stopSticky'; b.style.top = -Z + 'px'; } } else { b.className = 'stopSticky'; b.style.top = -R1 + 'px'; Z = R1; } } else { // скролл вверх //console.log('скролл вверх'); if (Ra.top - P < 0) { // не дойти до верха if (Rb.top - P >= 0) { // подцепиться b.className = 'startSticky'; b.style.top = P + 'px'; Z = Ra.top - P; } else { b.className = 'stopSticky'; b.style.top = -Z + 'px'; } } else { b.className = ''; b.style.top = ''; Z = 0; } } K = Ra.top; } else { if ((Ra.top - P) <= 0) { if ((Ra.top - P) <= R1) { b.className = 'stopSticky'; b.style.top = -R1 + 'px'; } else { b.className = 'startSticky'; b.style.top = P + 'px'; } } else { b.className = ''; b.style.top = ''; } } } else { // если высота контента меньше высоты колонки, то "прибиваем" колонку к верху Z = 0; b.className = 'stopSticky'; b.style.top = Z + 'px'; } window.addEventListener('resize', function() { a.children[0].style.width = getComputedStyle(a, '').width }, false); } })(jQuery) } })() </script> In custom.css add #ipsLayout_mainArea {height: auto;} .startSticky {position: fixed; z-index: 101;} .stopSticky {position: relative; z-index: 101;} Done. Comments me too lazy to translate and rewrite, sorry. Everything should work in version 4.1 / 4.2 / 4.3 on any templates (where the sidebar is standard, not redone) Result: If you liked it, press the likes))
    1 point
  4. Version 1.0.7

    541 downloads

    Enhance your user info panel with this powerful fully customizable plugin for the forum topic posts, You do not need to show all the information you can choose to show or hide any one of them or just choose to hide them on mobile viewing, you can now even choose what user groups can see what information UPDATED FOR IPS 4.2 DEMO How to install Go to the ACP and then plugins then install the downloaded .xml file (Yes its that easy) How to configure Go the the ACP plugin panel and select the settings button on the plugin Settings Feature Edit the width of the user info panel between 200px - 350px Move the username to the user info panel Show/Hide the users clubs as icons (if they are members of one) Show/Hide the users cover photo (If they have one) Show/Hide the users group with colour formatting Show/Hide the users rank / title Show/Hide the users post count Show/Hide the users reputation Show/Hide the users last activity Show/Hide the users follower amount Show/Hide the users post per day ratio Show/Hide the users amount of leader board member of the days won Choose to use a gold font for the member of the day Show/Hide the users joined date Change the joined date to one saying "With Us For xxx Days" Show/Hide each section for mobile browsing Show/Hide the users online status Change the online status to a pip Choose to use a pulsating green glow for when the users online Show/Hide the users birthday Change the birthday view to the show the members age instead Show/Hide the users timezone Show/Hide secondary group images Move the users rank pips / rank image to below the info panel Set a margin from the top of the post panel (Needed on some themes you won't need for the default theme) Now works with the iAwards user info pane Show/Hide a topic starter badge or field to the info panel (If the user is the topic starter) Show/Hide the users connected device (4.2.x Only) Change the width & height of the avatar between 75px - 200px Change the font of the username (you can use web safe fonts, Google fonts or you can even upload your own!!!!!) Change the height of the users cover photo Choose to have a border-radius around the avatar and enter your own amount Choose what each user group can see on the info panel Now works with (DF42) Members Social Info What's New in Version 1.0.7 Released May 16 New features You now have the ability to change the members birthday to show their age instead (As requested) Changed the maximum width of the avatar you can select to a maximum of 200px (As requested) Changed the avatar radius from a selection list so you can now add your own amount (As requested)
    -1 points
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...