Recent content by scriptop

  1. S

    [021] Unlimited scroll [Deleted]

    Is it possible somehow to use this addon for unlimited scroll in search_results?
  2. S

    [OzzModz] Custom Post Style [Paid]

    When you set the price to 0, it still offers to buy. Can you make it automatically available to apply if it's free?
  3. S

    Profile Vanity URL [Paid]

    PHP 8.1.6
  4. S

    [021] Real time chat [Deleted]

    Hey. Yes, I attached screens in this message https://xenforo.com/community/threads/bs-real-time-chat.171145/page-10#post-1593482
  5. S

    [021] Real time chat [Deleted]

    PHP 8.1 support please 🙌
  6. S

    Profile Vanity URL [Paid]

    when updating vanity url from admin for an user.
  7. S

    [021] Real time chat [Deleted]

    We have an error on PHP 8.1
  8. S

    [021] Real time chat [Deleted]

    To speed up loading for guests and all type of robots. Not that it's really a necessary feature, but it's definitely a good feature. I can also imagine is to be useful for staff members. I would personally setup it that way: guests (20), members (60), staff (100).
  9. S

    [021] Real time chat [Deleted]

    Can offer to move displayed messages limit to groups permissions. So guests (and robots) can see only let's say 20 messages, and registered users ex. 80.
  10. S

    Fixed Editor: Backspace key unexpectedly deletes line-breaks above caret that were created using Shift+Enter

    Previous code was broke some another things. Here is code to restrict SHIFT + ENTER in the editor <script> function isEnterShiftPressed(event) { if ((event.key === 'Enter') && (event.shiftKey)) return true; return false; } function isEditor(event) { if (event.target ==...
  11. S

    XF 2.2 Display quote BB code in editor

    Hello everyone. Can someone advise how to display quote as BB code (not rendered block) in the editor, by default, for all users?
  12. S

    Fixed Editor: Backspace key unexpectedly deletes line-breaks above caret that were created using Shift+Enter

    Managed it somehow. You can add this after <head> in PAGE_CONTAINER. <script> window.addEventListener('keydown', function (e) { e.stopPropagation(); }, true); window.addEventListener('keyup', function (e) { e.stopPropagation(); }, true); window.addEventListener('keypress', function...
  13. S

    XF 2.2 Condition to check screen (viewport) size

    I'm asking becuase don't want to run some JS under specific size.
Top Bottom