Recent content by Improvs

  1. Improvs

    [OzzModz] Overlay Data Template Context

    Thank you, everything works well except for the noPermission overlay, where data-url="null" appears instead of the template name.
  2. Improvs

    Report Improvements by Xon

    This improvement allow me to remove report?
  3. Improvs

    [021] Multi-account detector [Deleted]

    How to remove user from evercookies or other detection?
  4. Improvs

    XF 2.1 Sql query (finder) assistance

    I've created getter inside Entity: $structure->getters['retrieve_money_allow'] = ['getter' => 'getRetrieveMoneyAllow', 'cache' => true]; public function getRetrieveMoneyAllow() { $now = time(); $allowedTime = time() - 15 * 86400; if ($this->action_buyed_at <= $allowedTime) {...
  5. Improvs

    XF 2.1 Sql query (finder) assistance

    Hello. Is it possible to add extra select sql to xenforo Finder query? For example, I have XF finder query like this: $BuyerFinder = \XF::finder('MK\Store:Buyer') ->with('Thread', true) ->with('User', true) ->where('stage', 'active') ->fetch($limit, $offset); I need to improve...
  6. Improvs

    XF 2.1 What is xf-rebuild:threads really doing?

    My problem is slow request processing. As example, recently (1 week ago) it takes 10-20 seconds to rebuild phrases due importing. But currently it takes about 10-15 minutes to rebuild phrases. I have only 2 languages installed. The same problem due threads rebuilding via CLI, it can take...
  7. Improvs

    XF 2.1 What is xf-rebuild:threads really doing?

    Hi, can anyone explain me what rebuild threads job realy do? I got a problem, my server doing all kinds of rebuild job very very... slow (using CLI) and we can't find a reason with system administrator. So, We're trying to understand what kind of processes this job do. The same problem with...
  8. Improvs

    [XM] XR Product Manager Layouts [Paid]

    Compatible with xf 2.2 ?
  9. Improvs

    Tooltip Improvements

    5 years have passed. Are there any XF Tooltips solutions for the mobile?
  10. Improvs

    Similar threads [Paid]

    Hi, I have a lot of threads in my xf_thread and i'm using debug to see slow queries. Is it a good idea to add mysql index to thread title?
  11. Improvs

    XF 2.0 Proper way to return JSON

    That part working fine, I got json response and can see them inside post request. But how can I show json data in teamplate? How xf script working? <a href="mypathToAction" class="myclass" title="mytitle" data-xf-click="bookmark-click"...
  12. Improvs

    Anybody running PHP 8?

    Is XF v2.1.4 compatible with php 8?
  13. Improvs

    [AddonsLab] Post Limit Per Node

    Hello, thank you for your job. I noticed one unpleasant moment. When I post reply, page reloading. It's okey for specific node where I need to use this restrictions, but this happens in all forums. As I understand, that happens here: if ($thread->getRemainingItemCount() < 2)...
  14. Improvs

    [Andrew] Soft Deletion Requires Reason

    And what about hard delete? I need to see moderator reason also during hard deleting. Is it possible?
Back
Top Bottom