Recent content by Tris10

  1. Tris10

    Extend Xenforo.Ajax

    Thank you, worked perfectly.
  2. Tris10

    Extend Xenforo.Ajax

    I have a simple question, I am passing back a new variable in all ajax json calls and added the new column "_visitor_messagesUnread". All ajax calls that update the conversations and alerts has this new field...
  3. Tris10

    Listener navigation_tabs - Get request path node_id

    Simple question, How would i get the node_id (if exists) of the request path inside the "navigation_tabs" listener event public static function navigation_tabs(array &$extraTabs, $selectedTabId) { } Example www.leaguegaming.com/forums/index.php?forums/my-awesome-forum.12/ just need that...
  4. Tris10

    Rebuilding Permissions - Takes 3 hours

    So i did that, and ya, still getting the 2/3 hours rebuilds :)
  5. Tris10

    Rebuilding Permissions - Takes 3 hours

    So we run big online gaming leagues. For example one league we run has around 3,000 members and is a giant hockey league. We have 30 NHL teams , 30 AHL Teams, and right now 34 CHL Teams. Before, each team was its own usergroup, each team had its own forum, And that was just the users. We...
  6. Tris10

    Rebuilding Permissions - Takes 3 hours

    General Question, Every time Xenforo rebuilds permissions, it takes over 3+ hours. This is especially noticed when i have to shutdown the forums to upgrade Screen http://i.imgur.com/CZ7OoMX.png?1 Is there anything we can do to fix/improve this? I believe this is mostly because of our number of...
  7. Tris10

    XF 1.5 External Register Only

    Hmm does have now of a free plugin, not really worth the $10 for this feature
  8. Tris10

    XF 1.5 External Register Only

    Quick question, is there a way to only limit new users from external registration services (ie twitter, facebook , xbox ect)? I still get a ton of bots that get through and i just want to turn this off and only allow oauth type registers Thanks
  9. Tris10

    Custom BB Editor Icon Callback

    This worked perfectly! Thanks again, really appreciate it.
  10. Tris10

    Custom BB Editor Icon Callback

    Thanks @cclaerhout ! I will check this out and try to install it. I think it looks exactly what I am looking for
  11. Tris10

    Nav Sub Links - with a menu

    Question What would be my best bet (or is there an existing plugin) for achieving custom nav tabs, but more importantly, sub nav tabs with a drop down option This is basically what i want to achieve Each forum might have its own menu, and in those menu options, they might need a sub menu...
  12. Tris10

    Custom BB Editor Icon Callback

    Question about a custom BB code, I've created a custom bb code call "clip", pass an ID and it replaces the clip with the Xbox game clip in our database. That is working fine What I want to do, is have a custom button in the BB toolbar (which i do) ^ And I want it to basically behave like...
  13. Tris10

    Mobile App Extention - Ajax Calls

    Thanks, i did some reverse code lookup and got it working :) For anyone who comes across this Get a visitors token by: $visitor = XenForo_Visitor::setup($userId); $visitor['csrf_token_page'] Then pass it back in ajax as either a GET/POST with the key name "_xfToken"
  14. Tris10

    Mobile App Extention - Ajax Calls

    Thanks Jeremy, is it as simple as passing "$visitor['csrf_token_page']" Also in my ajax call, do i pass it as "csrf_token_page" name? And how so, in a GET/POST/Header? Thanks
Top Bottom