Feature proposal #2554
closedSeparate field desc for list, profile, and registration
Description
Would be good to have separate configurable descriptions of fields for registration, profile edit, and userlists. This would allow for instance the userlist tooltip to be different from that of registration or profile edit. As it stands many descriptions from registration make no sense on userlists when searching.
https://www.joomlapolis.com/forum/153-professional-member-support/165160-disable-tooltips-on-search
Updated by beat almost 13 years ago
- Target version changed from CB 1.8 to CB 2.1
Updated by krileon about 8 years ago
- Status changed from New to Feedback
- Assignee set to beat
Suggesting to extend the current Layout parameters with not only the ability to override the fields display (as it currently can), but also title and description (both easily done as both have functions where the layout code can be added).
Updated by krileon about 8 years ago
- Status changed from Feedback to Resolved
- % Done changed from 0 to 100
Implemented in MR !1165
This is implemented by simply sending $reason to all field substitution usages. This will allow conditions like the following to be used in field descriptions and titles for example.
[cb:if reason="edit"]PROFILE EDIT DISPLAY ONLY[/cb:if][cb:if reason="register"]REGISTRATION DISPLAY ONLY[/cb:if][cb:if reason="search"]SEARCH DISPLAY ONLY[/cb:if]
Note $reason is also sent to Custom HTML fields too so they can also condition their output based off location.