Recent content by AlessioDP

  1. AlessioDP

    UI.X 2

    Hello, there is a bug with sidebar collapse options, with "Remember user style changes: Store in browser cookie" the side navigation is not collapsed by default for any option. The issue is located in ThemeHouse\UIX\Listener\AppPubRenderPage:69...
  2. AlessioDP

    Fixed Black text behind name with banner is not of the same font weight

    If you customize the username via permission groups, the "fake black text" behind the name doesn't have the same weight. To test, open the user group and edit Username CSS by adding "font-weight: bold" or any other font-weight. Maybe the black text should be added via xf:username instead of...
  3. AlessioDP

    [TH] User Criteria Extended

    Still not working.
  4. AlessioDP

    [TH] User Criteria Extended

    I have some problems with this addon: Counting of resources is not working ("at least X resources" for example) Counting of posts is not that good, its couting deleted post (Fixed by editing the database query with post.user_id = ? AND post.message_state = "visible" at line 360 of User.php)
  5. AlessioDP

    As designed Field last_activity is not getting updated correctly

    And usually how much time does it takes? Because as I can see in \XF\Cron\Trophy (and other classes) there is a last_activity check to get only active users, does it work correctly?
  6. AlessioDP

    As designed Field last_activity is not getting updated correctly

    The field last_activity in xf_user table is not getting updated correctly (?). When an user reply or simply visit the website that field is not changing, only on login. Is this a bug or not?
  7. AlessioDP

    [Banxix] Bump Thread

    So what can I do if I want to show 2 buttons instead of one? :S (into Reply box and top of thread, as moderation button). Is it intentional that whenever an user bump a thread, the last post change its date to the current one? I thought this plugin adds a new condition that checks if there are...
  8. AlessioDP

    [TH] User Improvements [Deleted]

    I meant that what I'm trying to do, it can be added as toggleable option. For now I will implement by myself :)
  9. AlessioDP

    [TH] User Improvements [Deleted]

    Okay thank you, I got that. Do you think its better to make customizable the message that you see by mouse over the progress? Right now I see: 847/1000, and if you see 61% its not correct. I should see 247/400, => (Current Points - Points needed for last level) / (Points needed for next level -...
  10. AlessioDP

    [TH] User Improvements [Deleted]

    Sorry, I will repost here the question (I deleted it to check on GitHub before :P ) By following your formula, it brings some strange numbers. User title ladders are: 20, 50, 100, 200, 350, 600, 1000 I'm at the last one, 847 of 1000, I should see 84%, not 61 :S
  11. AlessioDP

    [Banxix] Bump Thread

    Great addon :) What do you think about change the position option from a radio box into a check box? So I can insert them into both moderation buttons and quick reply :)
  12. AlessioDP

    Fixed Trophy rebuild not skipping already awarded trophies

    In XF\Repository\Trophy::updateTrophiesForUser(..) there is a isset to skip already awarded trophies: if (isset($userTrophies[$trophy->trophy_id])) { continue; } That will return false every time, because the format of the $userTrophies returns an array with key as USER_ID-TROPHY_ID, so to...
  13. AlessioDP

    XF 2.1 Cannot run job with DeleteCleanUp.php: InvalidArgumentException

    Oh sorry: InvalidArgumentException: Operator > is not valid with an array of values: src/XF/Mvc/Entity/Finder.php:390
  14. AlessioDP

    XF 2.1 Cannot run job with DeleteCleanUp.php: InvalidArgumentException

    Hi, I have a cron that is breaking our forum, whenever I enter into the ACP I have a message the message that there are some jobs waiting to complete, but if I continue to execute them I receive this error: #0 src/XF/Mvc/Entity/Finder.php(132): XF\Mvc\Entity\Finder->buildCondition('bookmark_id'...
  15. AlessioDP

    XF 2.1 Correct approach to get data from PHP and use it as variable in a template

    Hi, I want to ask you what is the correct approach to print some generic data into any template? This is a quick example on what I'm trying to do: I can generate the data only from PHP and I wanna put that data into a template variable like this: <div> $myData <xf:macro...
Top Bottom