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...
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...
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...
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...
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'));
});
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...
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')...
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...
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...
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...
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' => []...
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...
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') }}"...