Jump to content

fsr

Snow
  • Posts

    32
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by fsr

  1. https://invisioncommunity.com/files/file/9932-task-manager/ it's a free app, so i hope someone will share it
  2. fsr

    Chatbox+ 2.5.0

    Anyone have the latest version? https://invisioncommunity.com/files/file/9342-chatbox/
  3. fsr

    color changes

    Just search in ur theme css
  4. {{if $comment->author()->isOnline()}} <img src='{$comment->author()->photo}' alt='{$comment->author()->name}' itemprop="image" style="border:2px solid green;"> {{else}} <img src='{$comment->author()->photo}' alt='{$comment->author()->name}' itemprop="image" style="border:2px solid red;"> {{endif}}
  5. https://dev.mysql.com/doc/refman/5.7/en/storage-engine-setting.html
  6. fsr

    color changes

    .ipsAreaBackground_reset .ipsBox:not( .ipsBox_transparent ):not( .ipsModerated )
  7. in custom.css [data-forumid="<categoryid>"] { background: url(<imageurl>); }
  8. Hello. Is there any way to get user's posts count from the latest 24 hours in pages block?
  9. Does anyone have version 1.0.8? https://invisioncommunity.com/files/file/8336-nb41-content-ratings/
  10. simply change color in the class ipsComposeArea_dummy
  11. #ffffff is white color, so change it to sth diffrent. You can also add !important at the end of the line.
  12. You have to change color in class .cke_wysiwyg_div
  13. Check chmods on your server
  14. I think you can't do it without custom app
  15. fsr

    Chatbox

    It simply isn't compatible with IPS 4.5.
  16. In content count u have to change "More than" to "Exactly" or sth like this.
  17. Have you checked the server configuration?
  18. regex for detecting url ^(?!http|https|https:\/\/|http:\/\/)([?a-zA-Z0-9-.\+]{2,256}\.[a-z]{2,4}\b) a href color change on button click var btn1 = document.getElementById('btn-1'), btn2 = document.getElementById('btn-2'); btn1.addEventListener('click', handler); btn2.addEventListener('click', handler); function handler(e) { if(e.target === btn1) { // selecting the 'a' element using 'getElementById'. var a = document.getElementById('some-id'); a.style.color = 'red'; } else { // selecting the 'a' element using 'getElementsByClassName'. var a = document.getElementsByClassName('some-class')[0]; a.style.color = 'green'; } } edit it by urself you just have to compare detected url and ur website url and change color of link with js
  19. You can simply copy Moderator badge from 4.5 beta2 after <span class="ipsUserPhoto"> add: <span class="cAuthorPane_badge cAuthorPane_badge--moderator" data-ipstooltip=""></span> CSS: .cAuthorPane_badge { position: absolute; left: calc(60% - .5em); bottom: 1px; display: flex; justify-content: center; align-items: center; width: 1em; height: 1em; font-size: 26px; background: rgb(255,255,255); color: rgb(0,0,0); border: rgb(255,255,255) solid 2px; border-radius: 50%; } .cAuthorPane_badge--moderator::before { content: "\f132"; }
  20. Please provide screenshot of db and your recordrow template. Also what error does it display?
  21. Because at first u have to do step 29
  22. Hello guys. I want to show you how to add sth like this: 1. Go to globalTemplate 2. In <head></head> section add this line: <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/intro.js/2.9.3/introjs.css" integrity="sha256-OYXGS5m4oWZAAqoAKpf7Y3bIdzdd9jBfly/xCavEpGw=" crossorigin="anonymous" /> 3. Now in globalTemplate find <!--ipsQueryLog--> and add above: <script src="https://cdnjs.cloudflare.com/ajax/libs/intro.js/2.9.3/intro.min.js" integrity="sha256-fOPHmaamqkHPv4QYGxkiSKm7O/3GAJ4554pQXYleoLo=" crossorigin="anonymous"></script> <script type="text/javascript"> function startIntro(){ var intro = introJs(); intro.setOptions({ steps: [ { intro: "Step 1 text" }, { element: document.querySelector('#elNavSecondary_71'), intro: "Step 2 text." }, { element: document.querySelectorAll('#elNavSecondary_63')[0], intro: "Step 3 text", position: 'right' }, { element: '#elNavSecondary_56', intro: 'Step 4 text', position: 'left' }, { element: '#step4', intro: "Step 5 text", position: 'bottom' }, { element: '#step5', intro: 'Step 6 text' } ] }); intro.start(); } </script> To select your own elements on your forum just change id of elements in element: '#elementid' To trigger the function you can use a button: <a class="ipsButton ipsButton_normal ipsButton_medium" href="javascript:void(0);" onclick="startIntro();" rel="">Start a tour</a> You can find full documentation of IntroJS HERE
×
×
  • Create New...