Recent content by Scandal

  1. Scandal

    XF 2.2 $finder / pagenav / total() / fetch() / unset some rows and normalize the pagenav and results

    Well, we have the well known finder: $this->finder('XF:Thread'). Finder includes methods to separate results into pages for the <xf:pagenav>, like: $total = $finder->total(); $threads = $finder->limitByPage($page, $perPage)->fetch(); My question: AFTER $finder->fetch(); I need...
  2. Scandal

    XF 2.2 Load a xF2 page on <iframe> without blocking / render my own template

    Thank you very much @Jeremy P, that works! @digitalpoint thanks too, there is a case the iframe to need to applied on a cloudflare xenForo 2, very useful notice!! Thanks again! P.
  3. Scandal

    XF 2.2 Load a xF2 page on <iframe> without blocking / render my own template

    Thanks for your message! :) Still not work. It works if I open the page on the browser, but if I open a page with an iframe, it shows this: carousel.html has this: <iframe src="https://localhost/xf2/carousel" width="100%" height="500px" border="1" /> My code: public function...
  4. Scandal

    XF 2.2 Load a xF2 page on <iframe> without blocking / render my own template

    Hello all! :) Well, I need to load a xF2 template page via an iframe, to external sites. Example: <iframe src="https://www.mydomain.com/xf2/myroute" width="100%" height="500px" border="1" /> This page should not include header / navigation / footer and so on. Only my own html. I know that I...
  5. Scandal

    Best captcha / human verification for xenForo 2.2 in 2024?

    I have xF2 version 2.2.2. Is there any - maybe - free addon to support Cloudflare Turnstile? Is Cloudflare Turnstile free as far as it concerns the API keys?
  6. Scandal

    Best captcha / human verification for xenForo 2.2 in 2024?

    Hello all! Recently I see new registered bot accounts on my forum. I use Question & Answer human verification in my language but seems it is broken now. What I could do? Is there any addon for 2.2.2 to enable a new, more reliable human verification system?
  7. Scandal

    XF 2.2 Handle bounce e-mails (Amazon AWS)

    Hello all! I have a xF2 forum and I'm using Amazon AWS SMTP to send the board's e-mails. I need this: how could I handle the bounce e-mails automatically? I mean to move a user to Invalid E-mail (bounce) user state automatically. I want to notice that I have enable the AWS Notifications and...
  8. Scandal

    XF 2.2 Any way to include x.com and youtube shorts on bbcode parse without external addon?

    Thanks! I applied and worked. (y) Any idea for youtube shorts?
  9. Scandal

    XF 2.2 Any way to include x.com and youtube shorts on bbcode parse without external addon?

    Hello all! :) Is there any way to include x.com analyze and youtube shorts via the integrated /admin.php?bb-code-media-sites/ ? For example, to push the Add BBCode media site and what to add on the fields (Match URLs) etc? I have xF2.2.2 and I'm not yet ready to update to most recent version...
  10. Scandal

    XF 2.1 A user posted a thread and tagged me in it. I am not receiving an alert.

    Is there any update on this on newer xF2 versions? :) I thought that was a bug on my xF2 board due to my custom addons. There are lot of cases where someone adds a mention on post edit, and the alert was never sent, even thought the bbcode parser shows the mention like processed (linkable /...
  11. Scandal

    XF 2.2 Ajax loaded template and formrows rendering

    That's great, worked (y) Thanks :)
  12. Scandal

    XF 2.2 Entity with multiple bbcode columns (<xf:editor>) + each editor to support each own attachments

    Hey guys, I have a new question: Let's say I splitted the entities into two different, so now I could have one <xf:editor> (+ attachments) per entity. Can I put both <xf:editor> fields on the same page / <xf:form> and via clicking Submit / Save, to save the attachments on the correct entity...
  13. Scandal

    XF 2.2 Ajax loaded template and formrows rendering

    Hello all! (y) I have a question about ajax loaded content (template). I use this code to get some ajax loaded content: var ajaxParams = {'act': 'test'}; XF.ajax('post', "{{ link_type('admin', 'canonical:myroute', null) }}", ajaxParams, function(data, textStatus, jqXHR){...
Top Bottom