Recent content by Newsman

  1. N

    XF 2.3 Can't upgrade to 2.3.4 "Invalid icon variant: duo"

    Huh, turns out this was indeed the issue - but weirdly enough, I had those lines commented out, so they shouldn't have been considered in the first place.. Anyways, thanks Jeremy!
  2. N

    XF 2.3 Can't upgrade to 2.3.4 "Invalid icon variant: duo"

    Hey y'all, tried to upgrade both via the ACP and via CLI, but always get this error: InvalidArgumentException: Invalid icon variant: duo src\XF\Service\Icon\UsageAnalyzerService.php:675 #0 src\XF\Service\Icon\UsageAnalyzerService.php(898)...
  3. N

    XF 2.4 Tiptap: A new editor for XenForo

    ..this is incredible. The relatively easy way to implement new extensions (!!!), the simpler look with toggleable toolbar, the node system... can't wait! :D
  4. N

    XF 2.4 general discussion, feedback, complaints, random off topic posts, etc.

    new editor time 👀 really curious how that is going to look and how much you can do with it
  5. N

    XF 2.3 Change BB Code rendering for custom entity?

    Hey there, let's say I have $content - which is a custom entity. I use the bbcode template function bb_code() to render $content.message - but here's the thing: I only want it to be able to render the user mentioner; no images or anything else. Is there any way to give the BB Code renderer...
  6. N

    XF 2.3 Switch from one overlay to another one?

    Hey there! I was wondering if it's possible to basically open another overlay while one is already open. Let me explain: You open an overlay -> there is a link in it -> when you click that link, the current overlay is being replaced by the new one Gave the link an overlay="true" attribute but...
  7. N

    XF 2.3 Add an additional index to my entity aside from id?

    Oh wow, I seem to have solved this - the column was a LIST_COMMA column instead of an INT one 😅😅😅 Blazing fast now, YES! Thanks anyway @Jeremy P , I really appreciate the quick replies! Cheers!
  8. N

    XF 2.3 Add an additional index to my entity aside from id?

    It is a simple relation from what I can tell 'RelatedApps' => [ 'entity' => 'Newsman:App', 'type' => self::TO_MANY, 'conditions' => [ [ 'parent_app', '=', '$id' ] ], 'primary' => true, 'api' => true ],
  9. N

    XF 2.3 Add an additional index to my entity aside from id?

    So I went ahead and did that, added a new key that should serve as an additional index - but there is no real difference in terms of performance unfortunately. Just to clear up what I want to do: let's say I have the following data in my DB called 'apps' [ id = 1, name = 'ABC', 'parent_app_id'...
  10. N

    XF 2.3 Add an additional index to my entity aside from id?

    Hey there, I was wondering: is there a way to add another index to my Entity aside from its primary key id? I read about adding an additional index via MySql and did so, but now I'm not sure how to proceed lol. I appreciate any input! Cheers!
  11. N

    XF 2.3 Alternatives for using FIND_IN_SET?

    Hey there! To check whether a value is in a column with multiple values (the secondary_group_ids column of the XF:User table for example), I often use a Finder with FIND_IN_SET via whereSQL. Is there an actual native alternative to this that I haven't discovered yet? Like some kind of...
  12. N

    Duplicate StyleProperty error when importing styles

    Hey there, I use this command to import a style: This worked flawlessly until updating to the newest Beta (7); now I receive this error Is this anything critical I got to take care of? Cheers!
  13. N

    XF 2.3 What's new for developers in XenForo 2.3?

    yeah, i had to do this exact change for a function in my code to make it work again.. there's also an api endpoint i made that does not work anymore since like beta 5 or 4 which might be connected to this? dunno
  14. N

    XF 2.3 Avoid a specific menu to close

    I've found the solution! When necessary, I used XF.MenuWatcher.preventDocClick() to disable the closure of menus - and then use XF.MenuWatcher.allowDocClick() to enable the function again. This allows you to click on elements that are not part of the menu and placed outside of them (y)
Back
Top Bottom