Recent content by Itworx4me

  1. Itworx4me

    XF 2.3 Toggling Widgets

    For ****s and giggles I ran this through chatgpt: You're very close! You're correctly extending `XF\Widget\WidgetRenderer` and attempting to access the current widget, but the issue seems to be **the timing or context of your `render()` override** — specifically, that the `widget` entity isn’t...
  2. Itworx4me

    XF 2.3 xenForo Title

    I have this piece of code that works but I don't think its the right way to do it. <xf:if is="$xf.options.myOption != '1'"> <xf:title>{{ phrase('title') }}</xf:title> <xf:else /> <xf:title></xf:title> </xf:if> If I take the else statement out it will replace the title with the board...
  3. Itworx4me

    XF 2.3 prefixinputrow

    When using the prefixinputrow: <xf:prefixinputrow label="" prefixes="{}" type="" prefix-value="" textbox-value="" placeholder="" autofocus="autofocus" help-href="{{ link() }}" /> It has some values to be implemented. I can understand what some of them do but I...
  4. Itworx4me

    HTML Usertitles

    I wonder how much @Nookster paid to have this made by @forumSolution? I bet $10.00 is way cheaper than what he had to pay... 😳
  5. Itworx4me

    XF 2.3 Add footer link to help page

    I would recommend doing the edit with a template modification. Keep the templates as designed instead of custom change. JMO
  6. Itworx4me

    Pulling forum - how to leave forwarding page

    I found this document that might help you on closing your forum: https://xenforo.com/community/resources/how-to-archive-a-xenforo-forum-to-make-it-read-only.7825/
  7. Itworx4me

    XF 2.3 I can't move topics to categories error

    https://xenforo.com/community/resources/xenforo-redirects-for-vbulletin.6123/
  8. Itworx4me

    XF 2.3 Stuck on this JS Button

    I saw this thread too. But I am a total newbie so it doesn't make any sense to me or how to use it in my situation. Thanks you @Ozzy47 for trying to help
  9. Itworx4me

    XF 2.3 Stuck on this JS Button

    I am still stuck on this step. It just doesn't replace the content with .js-controls. Someone has to know how to fix this....lol
  10. Itworx4me

    XF 2.3 Stuck on this JS Button

    I am watching the video series on how to build a note pad. I am stuck on building with Xenforo 2 part 11. It asks me to create this code: <xf:button href="{{ link('notes/edit', $note) }}" fa="fa-edit" data-xf-click="inserter"...
  11. Itworx4me

    XF 2 Command Line Functions

    Itworx4me updated XF 2 Command Line Functions with a new update entry: xenForo 2.3.6 Command Line Functions Read the rest of this update entry...
  12. Itworx4me

    XF 2 Command Line Functions - xenForo 2.3.6 Command Line Functions

    XenForo 2.3.6 Usage: command [options] [arguments] Options: -h, --help Display help for the given command. When no command is given display help for the list command -q, --quiet Do not output any message -V, --version Display this application version...
  13. Itworx4me

    XF 2.3 PhpStorm setup for Xenforo

    After years of working with XenForo, I decided it was time to deepen my coding knowledge. So, I purchased PhpStorm and set everything up—or so I thought. While following Kier’s video on creating a simple notepad feature, I ran into an issue. In the video, Kier uses the debugger to inspect some...
  14. Itworx4me

    XF 2.3 Option on/off check box

    I ended up figuring this out. ;)
  15. Itworx4me

    XF 2.3 Option on/off check box

    I've created an option which uses the On/Off checkbox. How do I call the function to see if it has a check mark? <xf:if is="$xf.options.mycheckboxoption == '1' "> Do something </xf:if> This doesn't work. What is the correct way to call this function? Thanks, Itworx4me
Back
Top Bottom