Recent content by giperfast

  1. giperfast

    Font Awesome Manager

    How can this be fixed? Xenforo v2.2.8 Patch 1
  2. giperfast

    :barefoot:

    :barefoot:
  3. giperfast

    Fixed Admin control panel header

    This is an addon that shows system information and allows you to log out of the admin panel account. But on another server with pure XenForo, the same problem.
  4. giperfast

    Fixed Admin control panel header

    I forgot to mention that this only happens on small screen resolutions
  5. giperfast

    Fixed Admin control panel header

    PC: Yandex Browser, Microsoft Edge Phone: Iphone 13 pro, IOS 15.2, Safari Browser
  6. giperfast

    Fixed Admin control panel header

    When entering the admin panel of the forum from the phone, the buttons in the header are moving.
  7. giperfast

    XF 2.2 Updating a new user entity field via REST API

    I found a mistake in Class extensions in ACP in Base class name, instead of ('XF\Api\ControllerPlugin\User') I specified ('XF\Entity\User'). Thank you!
  8. giperfast

    XF 2.2 Updating a new user entity field via REST API

    I tried, but it didn't work. class User extends XFCP_User { public function getAccountEditInput() { $tableInput = parent::getAccountEditInput(); $tableInput['user'] = $this->filter([ 'system_information' => '?str', ]); return $tableInput...
  9. giperfast

    XF 2.2 Updating a new user entity field via REST API

    If you add this field here, everything working. But I don't want to modify xenforo.
  10. giperfast

    XF 2.2 Updating a new user entity field via REST API

    I extended the "XF\Entity\User" class to add a new field to get it when authorizing with ('api/auth/from-session'). The code looks like this: class User extends XFCP_User { protected function setupApiResultData(\XF\Api\Result\EntityResult $result, $verbosity = self::VERBOSITY_NORMAL, array...
Top Bottom