How to … sort the feuserlist in TYPO3

How to

I just “create” the solution for viewing all fe_users in frontend.  The problem was to sort the members by name and not any other subject. I read the code from the linking-area and so the problem was solved.

I use in the concerning project the “old” newloginbox extension. But i think the code can be used in a modified way also in the extension feuserlisting.

You have to insert just this snippet to your TS-Setup:

#sorting the memberlist by name
plugin.tx_newloginbox_pi3{
_DEFAULT_PI_VARS.sort=name:0
}

The attribut name:0 sorts from A-Z.

You can use name:1 for sorting from Z-A

I hope you will have fun with this small snippet.

Greetz

Martin

Related posts:

  1. How to … – TYPO3 fe_userlisting sort by …
  2. How to … sort the Typoscript Template
  3. How to delete csc-default and id tag in TYPO3 4.3

2 Responses to “How to … sort the feuserlist in TYPO3”


  1. 1 Michael Cannon

    Great find! This is the first time in 6 years, I’ve noticed the _DEFAULT_PI_VARS TypoScript option. What a great way to overcome a missing TS option that could be alternately set with TS pushed to piVars.

  2. 2 blumentritt

Leave a Reply

*