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:
- How to … sort the Typoscript Template
- How to … convert HTML-Content to PDF File in TYPO3
- How to … add metatags to TYPO3 website
- How to … update TYPO3 4.2
- How to … change the title-element in TYPO3
- How to … set the favicon in TYPO3
- How to delete csc-default and id tag in TYPO3 4.3
- How to … change the standard target for links in TYPO3
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.