Recent content by FoxSecrets

  1. FoxSecrets

    [FOX] Ultimate Translator - [FOX] Ultimate Translator - version 2.1.0

    Removed bootstrap dependency (re-installation required) Option to add HTML tags used for not translated words New admin layout
  2. FoxSecrets

    [FOX] Ultimate Translator [Paid]

    FoxSecrets updated [FOX] Ultimate Translator with a new update entry: [FOX] Ultimate Translator - version 2.1.0 Read the rest of this update entry...
  3. FoxSecrets

    XF 2.2 Help me to find a delete action

    Ow I forgot that extension :| , many thanks @Jeremy P
  4. FoxSecrets

    XF 2.2 Help me to find a delete action

    Help me to find the delete action of custom fields, I can't find it. url: admin.php?custom-user-fields/ I found the url custom-user-fields/<field_id>/delete and class points to XF:UserField However when I check XF UserField controller, I can't find delete action. Where is it?
  5. FoxSecrets

    XF 2.2 Additional files not being deployed on add-on installation

    Ok, thanks @Jeremy P. It would be interesting if you could address this behavior, in dev mode display some error message and in prod mode avoid getting stuck.
  6. FoxSecrets

    XF 2.2 Additional files not being deployed on add-on installation

    I did other tests here and I understood what happened, I'll try to explain. In development mode, when uninstalling the add-on, I noticed that the files were not deleted. So I configured it to delete the directories when uninstalling the add-on (in setup.php), and when trying to reinstall it...
  7. FoxSecrets

    XF 2.2 Additional files not being deployed on add-on installation

    Yes, layout, command and hashes, everything ok. And exactly as you said, the installation completes, but the files (js/css) are not placed anywhere, no log errors, no messages. I have no idea how to give an example, that's a simple installation task. Should this behavior maybe related to...
  8. FoxSecrets

    XF 2.2 Additional files not being deployed on add-on installation

    @Jeremy P can you help me with this issue? I've got the zip with all js/css files, but do not deploy them on installation. I did exactly what you mentioned here, but the problem is not with the zip, but with the installation.
  9. FoxSecrets

    XF 2.2 Additional files not being deployed on add-on installation

    I just want to preload some image files that are part of my add-on's sample data.
  10. FoxSecrets

    XF 2.2 Additional files not being deployed on add-on installation

    No, I haven't. Should I create the directories and also set build.json file? Both? Can you explain me how? I need to load some images.
  11. FoxSecrets

    XF 2.2 Additional files not being deployed on add-on installation

    I've added some directories to my add-on, however is not being deployed on installation. Am I missing something? build.json { "additional_files": [ "js/My/Addon", "styles/My/Addon", "data/My/Addon/Images" ] }
  12. FoxSecrets

    XF 2.0 Why isn't hashes.json written to filesystem?

    How can I use this code to generate the hashes file on my add-on building? Should I put in setup file?
  13. FoxSecrets

    XF 2.2 Run query on user downgrade

    Got it working. I extended the wrong class. It has to be XF\Repository\UserUpgrade ~ My\Addon\XF\Repository\UserUpgrade , not CleanUp.
  14. FoxSecrets

    XF 2.2 Run query on user downgrade

    I need to run a query on user downgrade, so I set class extension XF\Cron\CleanUp ~ My\Addon\XF\Cron\CleanUp The function runUserDowngrade runs under XF class not what I've set. namespace My\Addon\XF\Cron; class CleanUp extends XFCP_CleanUp { public static function runUserDowngrade()...
  15. FoxSecrets

    XF 2.2 Custom widget positions

    Ok, I get it. So just don't insert the 'position' attribute, right? Nice, I was stuck on it, and it's very simple. Thank you @Chris D
Top Bottom