Recent content by Jeremy P

  1. Jeremy P

    Fixed Thread title edit duplicates moderator log

    I doubt it was in a template. I can't reproduce it here though. Worth testing on a default style with all add-ons disabled, and if it persists you can post a new bug with reproduction steps. Note this bug specifically occurred when editing the first post in a thread (rather than using the 'Edit...
  2. Jeremy P

    XF 2.3 Is there any official REST API to fetch only Featured Threads?

    Not currently but it is forthcoming in 2.4: https://xenforo.com/community/threads/featured-content-improvements.229454/#-full-rest-api-support
  3. Jeremy P

    XF 2.3 Change row color of thread with certain prefix

    The same technique described here applies: https://xenforo.com/community/threads/custom-prefixes.222693/post-1688837
  4. Jeremy P

    XF 2.3 Change row color of thread with certain prefix

    .structItem.structItem--thread.is-prefix1 { background-color: yellow; }
  5. Jeremy P

    XF 2.3 Limit Birthday Widget to specific usergroup

    The display conditions just control whether or not to display the widget, meaning the conditional will cause the widget to be displayed to users belonging to group 37. It has no bearing over the content of the widget. You could instead edit the widget_birthday template and replace the wrapper...
  6. Jeremy P

    XF 2.3 Change row color of thread with certain prefix

    The rows have a class of .is-prefix{id} so you can use that to target them for whatever CSS you want.
  7. Jeremy P

    XF 2.3 How to use phrases in the front-end?

    You'd have to add it in your front-end template: <xf:js> XF.extendObject(XF.phrases, { my_phrase: "{{ phrase('my_phrase')|escape('js') }}", my_other_phrase: "{{ phrase('my_other_phrase')|escape('js') }}" }); </xf:js>
  8. Jeremy P

    XF 2.3 Public Navigation for single member

    You could do it based on their ID: $xf.visitor.user_id === 123
  9. Jeremy P

    XF 2.3 Trending content

    There is no total in that sense as the scores and weights are relative to each other. For example, using the quoted configuration, a thread with ten reaction points and no replies will have a trending score of 200, where a thread with two replies and one reaction point will have a trending score...
  10. Jeremy P

    As designed Banned Users title keeps active

    This is as-designed, we don't visually distinguish banned members out of the box beyond the strikethrough displayed to staff. You may enable the option to add banned members to a user group to override their user title, if you wish.
  11. Jeremy P

    Not a bug Reply to thread doesn't result in notification/alert, and the thread and subforum do not get bolded as expected

    I tested the exact steps described before triaging and received it just fine, and we’ve received no other reports of this. If you can reproduce this reliably with all add-ons disabled on the latest version, you can share the steps and I can try again.
  12. Jeremy P

    Cannot reproduce Auth and session API affected by Discourage logic regardless of request source IP

    I can't reproduce this, and we don't apply discouraged checks to the API endpoints at all. My best guess is that PHP-FPM was saturated from public requests and therefore unable to handle the API requests.
  13. Jeremy P

    Design issue InputFilterer::filter 'posint' data corruption

    I'm not sure we can really change this as-is since it breaks backwards-compatibility. You can use eg. ?posint to allow for null values for missing data if that's preferable.
  14. Jeremy P

    Not a bug Google crawler indexing “Quote” reply button links

    We do set nofollow on them already, so if they are displayed to guests then its kind of up to the crawler to respect that or not.
  15. Jeremy P

    Custom fields display desktop - mobile

    This is as-designed for our pairs styling. You could customize the field's wrapper display HTML to justified, for example, or make other adjustments via extra.less: <dl class="pairs pairs--justified pairs--customField" data-field="{$fieldId}"> <dt>{$title}</dt> <dd>{$value}</dd> </dl>
Back
Top Bottom