Recent content by Tumpe

  1. Tumpe

    XF 2.2 Validator or Regular Expression in custom fields?

    Old thread, but the regex validator pattern is visible in the page source as the pattern attribute for the input field, so not sure if this is actually a very effective against spam registrations in the long run. I'd assume the custom validator should work better though.
  2. Tumpe

    XF 2.2 Link posts for FB in foreign Language ?

    Yeah so we are getting this from when XF tries to unfurl a FB share url, like facebook.com/share/p/.... Media embeds work normally, they are parsed correct. But those urls return cyrillic/russian language previews even though our servers are in Finland. And this behavior is on both 2.2 and...
  3. Tumpe

    XF 2.3 CSS still bundled with HTTP/2.0

    Thanks, this fixed the issue.
  4. Tumpe

    XF 2.3 CSS still bundled with HTTP/2.0

    Yeah, I think the http/1.1 comes from our Varnish caching proxy and messes things up. It would be nice to have an option in XF settings to force separate loading :) But thanks for the clearup!
  5. Tumpe

    XF 2.3 CSS still bundled with HTTP/2.0

    Oh, interesting, this is from the test installation which runs similar setup to the live site: string(8) "HTTP/1.1".
  6. Tumpe

    XF 2.3 CSS still bundled with HTTP/2.0

    I've upgrade our test installation with success, but this isn't working like it should? We still get individual css files bundled together. Created a whole new blank default style and same happens there too. I checked another XF project I've worked on and while the 2.3 upgrade was very...
  7. Tumpe

    Ads Manager 2 by Siropu [Paid]

    Are there plans to remove jQuery dependency once XF2.3 rolls out? @Siropu
  8. Tumpe

    Fixed Deprecated exception with search in certain situations

    PHP: 8.1.3 DB: 10.7.3 (10.7.3-MariaDB-1:10.7.3+maria~focal) Happens on the most recent 2.2.9 but first discovered with 2.2.8. This happens/is displayed only with development mode on. If the logged in user is admin, the error doesn't come up. This happens at least when clicking post total in...
  9. Tumpe

    Ignore Content [Paid]

    On our forum I've elected to display in thread list threads that has thread author ignored and that's just a small styling change. But when I install this add-on it becomes problematic, since $thread.isIgnored() has the same result when the thread itself is ignored or the thread poster. So if...
  10. Tumpe

    XF 2.0 Forcing full date/time information?

    Seems like data-full-old-date is not longer working and the current syntax (at least in 2.1.3) is data-full-date. Just fyi if you came through google like I did. More here: https://xenforo.com/community/threads/xf-date-s-data-full-old-date-doesnt-work-for-future-dates.139574/
  11. Tumpe

    Editor & BB Code Manager

    Thanks for the addon. When I disable media bbcode with an user criteria with media auto-embedding on, it works like it should but lefts unparsed bbcode tags visible. I guess it has more to do with the auto-embedding feature but would be a nice improvement on this module to strip those unused...
  12. Tumpe

    XF 2.1 Remove staff, admin, moderator classes from username link easily?

    I managed to pick up the abovementioned function and leave the parent like it is with the parent::fnUsernameClasses. So the addon pretty much works now, it ain't pretty but it works and have no plans to release it anyways.
  13. Tumpe

    XF 2.1 Remove staff, admin, moderator classes from username link easily?

    I guess the right way to do this is with an custom addon. This I think replaces the whole fnUsernameClasses function, but at least I got rid of the span with the classes. <?php namespace Something\UserClasses; class UserClasser extends \XF\Template\Templater { public function...
  14. Tumpe

    XF 2.1 Remove staff, admin, moderator classes from username link easily?

    Thanks, but the user banner settings have no effect on this.
  15. Tumpe

    XF 2.1 Remove staff, admin, moderator classes from username link easily?

    Every username link for moderator / staff on XF2 has a span that has classes referring to the user group, i.e. <span class="username--moderator username--admin"> For regular users that don't have any custom css declarations the span and classes doesn't exist. Boards that have "anonymous"...
Back
Top Bottom