Recent content by Scandal

  1. Scandal

    Bots (as guests) are spamming the search function

    The problem is a huge amount of guests I can see to make searches, are not counted as "robots" by xenforo, and maybe nor by robots.txt. Sometimes on ip lookup it says data centers or sth. Since I'm a developer, I'm thinking to build a human verification feature for search function / guests...
  2. Scandal

    Bots (as guests) are spamming the search function

    Hello people! :) I have the following issue on my board: Bots are spamming / flood the search function. Finally I disabled search for guests usergroup to prevent it, but I don't think it is fair for the normal guests. Does xF2.2 / 2.3 provide any solution by default or any custom addon exists...
  3. Scandal

    XF 2.2 data-xf-click="toggle" and hide other opened "block-body--collapsible"

    Hello all! Well, I have this code, multiple times inside the page to toggle blocks. <h3 class="block-formSectionHeader"> <span class="collapseTrigger collapseTrigger--block" data-xf-click="toggle" data-target="< :up:next"> <span>Something 1</span> </span> </h3> <div...
  4. Scandal

    [Scandal's] xF Glossary

    Hello people! :) So sorry for not replying to your questions until now. I don't have free time to update this addon to xF2.3 (due to I have to work with my clients to convert my existing work into xF2.3 so no time for my free addons). So sorry about it. It does not need so much work, I guess...
  5. Scandal

    XF 2.3 chartist / graph inside a tab pane

    I achieved to fix it on my own with this "not so normalize way". Since the graph fixed during a window resize, I'm triggering the resize event (not real resize of the window). XF.on(document, 'tab:shown', function () { window.dispatchEvent(new Event('resize')); });
  6. Scandal

    XF 2.3 chartist / graph inside a tab pane

    Another notice: if I resize the window of my browser with my mouse, the stats chart appears. Why this issue?
  7. Scandal

    XF 2.3 chartist / graph inside a tab pane

    Hello all! I'm trying to show a graph on the public site, inside a tab pane (tabs). But I'm receiving error on message.js. The strange thing is that if I open the developer console, graph shows as should. But after a page refresh (even with closed the browser console), it is still buggy. If...
  8. Scandal

    XF 2.3 Overlay popup closes after a form submit / use of iconic--toggle :: I need to keep it open

    Hello all! I have a problem which I cannot solve for some reasons. Well, I'm opening an overlay popup via this: <a data-xf-click="overlay" href="{{ link('sth') }}">My Page</a> This overlay has on the template: <xf:form data-xf-init="ajax-submit" autocomplete="off" action="{{ link('sth/sth2')...
  9. Scandal

    XF 2.2 Ajax loaded template and formrows rendering

    Hi again guyz! Jeremy or anyone else: could you provide me the above example code as it should be on xF2.3 (jQuery removed, XF.setupHtmlInsert has a small change etc), so as to work the same way? I make it work, but have some issues with the styling / formrows rendering, like my first post's...
  10. Scandal

    XF 2.2 phpstorm IDE: configuration suggestions for xF2

    Hello all! :) I recently switched to phpstorm v2024.3 for first time. This is a great and very pro IDE. I need your suggestions to make it work as more productive with xF2 development. For example: initially I added to File > New Projects Setup > Settings for New Projects > Languages and...
  11. Scandal

    Audio files on the xF2 Editor / directly from mic / not from smartphone file browsing

    Hello all! Is there any custom addon or sth, which would allow members to record audio via their smartphone mic and attaching it directly on the editor as audio / player / attachment? I know that there is an addon to attach *mp3 files / and show audio player. But maybe that requires first to...
  12. Scandal

    XF 2.2 XFES / Enhanced Search: I need to search also on an extra column

    Hello all! I have the following issue for which I need some help. I have this part of code to make a search for nodes (I use also Enhanced Search / Elastic Search). $input = [ 'search_type' => 'node', 'keywords' => $keywords, 'c' => []...
  13. Scandal

    XF 2.2 Replace variable on templates before rendering

    Hello all! 1. Let's say we have the template variable $post.User.username. On $post I have a getEditedUsername() getter. Is that possible via php / class extension (without modification of the template) etc. when on the templates called the $post.User.username, in reality to give as result...
  14. Scandal

    XF 2.2 <xf:option check-all=".block-container"> not working with ajax loaded content

    Hello all! Well, we have a page with some content (entries) and checkboxes. If I initially load the page, this checkbox works as expected and checks all the checkboxes at once: <xf:checkbox standalone="true"><xf:option check-all=".block-container" label="{{ phrase('select_all') }}"...
Back
Top Bottom