Recent content by skullkrusher

  1. S

    Content Ratings [Paid]

    Is it possible to count multiple ratings as likes? I have a list of members ranked on likes and i would like to rank them on the sum of specific ratings.
  2. S

    XF 2.0 how to make a list in xenforo tag language?

    thanks! and what if i want to get an item from the list knowing the index? $list[0] doesnt seem to work
  3. S

    XF 2.0 how to make a list in xenforo tag language?

    how to do this? my code: <xf:set var="$list" value="['1', '2', '3']" /> <xf:foreach loop="$list" value="$item"> <p>{$item}</p> </xf:foreach>
  4. S

    XF 2.0 how to count users online of a specific usergroup?

    i used xf:set to increment a variable in a foreach loop over the $online.users whenever they belong to the usergroup solved
  5. S

    XF 2.0 how to count users online of a specific usergroup?

    sorry i should have been more clear in the question is there any template way of doing this?
  6. S

    XF 2.0 how to count users online of a specific usergroup?

    this is what i have right now {{ count($online.users | isMemberOf(7)) }} which doesnt work because isMemberOf isnt a default filter how do i filter on group membership? or is there another way to accomplish this?
  7. S

    Content Ratings [Paid]

    can we get the rating that a thread gets most, shown in the threadlist? a rating system in xenforo 1 had this. dont remember the exact name
  8. S

    XF 2.0 how to use forum id in templates?

    apparently it isnt available in quick-reply i just put the code in thread-view and now it works so fixed with a workaround
  9. S

    XF 2.0 how to use forum id in templates?

    i updated the op, still need help
  10. S

    XF 2.0 how to use forum id in templates?

    it didnt work @ozzy47 im using this in the quick-reply template, is it possible that it doesnt have access to the variable?
  11. S

    XF 2.0 how to use forum id in templates?

    im not sure why it doesnt work, are the variables wrong?
  12. S

    XF 2.0 how to use forum id in templates?

    this is my code: <xf:if is="$forum.node_id == 17"> do something specific for forum with id 17 <xf:else/> do something for all other forums </xf:if>
  13. S

    XF 2.0 where can i find documentation on the xenforo 2 template language?

    are filters different from functions? i imagine those arent documented either....
Top Bottom