Recent content by Renari

  1. Renari

    User Streams

    I haven't updated this in a long while, if I get some free time I'll look into rewriting it, that said without any information about what errors you may have gotten I can't try to help you.
  2. Renari

    Render template in custom page within xenforo.

    Nevermind found another solution.
  3. Renari

    External login function with avatar

    It seems like the php isn't being run on your front page, it's probably because your new server has php shorttags disabled, change <? to <?php
  4. Renari

    Overriding an option?

    Thanks Chris, public static function indexRouteOverride(XenForo_Dependencies_Abstract $dependencies, array $data) { $dw = XenForo_DataWriter::create('XenForo_DataWriter_Option'); $dw->setExistingData('indexRoute'); $dw->setOption('indexRoute', 'home')...
  5. Renari

    Overriding an option?

    I've been trying to override the boardIndex option and the only way I can see to do it is to make a class that extends the autoloader class and have it override the value and use XenForo_Autoloader::setInstance() to force the modified version. I haven't tested the above but does anyone know of...
  6. Renari

    Creating a new tab and friendly url issue.

    Figured it out, you should use the the Xenforo_Link class. Xenforo_Link::buildPublicLink('home')
  7. Renari

    Creating a new tab and friendly url issue.

    When adding a navtab like so I'm running into an issue if friendly url is off, since the page that it needs to link to in this case would be http://site.com/index.php?home/ instead of http://site.com/home is there a variable to check if friendly url are off in this class and change the href...
  8. Renari

    XF 1.3 Style Exporting Popup doesn't show.

    Thanks, that fixed it.
  9. Renari

    XF 1.3 Style Exporting Popup doesn't show.

    Clicking the export button results in a blank page for me like so.
  10. Renari

    User Streams

    The current version already is, check the extras folder for userstreams_widget.xml.
  11. Renari

    User Streams [Deleted]

    You're able to do this yourself, the template for the streams is there and all of the users stream data is passed to that template. It's just a matter changing the template the way you described. Also you shouldn't be using this release of the addon there was a bug that prevented it from...
  12. Renari

    User Streams

    Renari submitted a new resource: User Streams (version 1.0.0) - Shows a sidebar with users current live streams. Read more about this resource...
  13. Renari

    Unmaintained User Streams 1.0.0

    Allows users to specify their stream in their profile upon which the forum will check if their stream is live. If it is their stream will be shown in the sidebar. By default this updates every half hour, you may want to adjust this depending on the size of your board. You can find a log of how...
  14. Renari

    Template Caching?

    Thanks, you were right also thanks for the suggestion on improving the code I've never used an opcode cache before and I'll read up on it. I wasn't aware that += prioritized the original array, rather I believed it to function the opposite.
  15. Renari

    User Streams [Deleted]

    Also I'll look into doing this when when I read up on how to add options since this shouldn't be to hard to implement.
Top Bottom