JDobbsy1987 Member Aug 9, 2019 #1 Hi, Is it possible to shows custom field under the username on the profile page? I would like to display 3 fields on 1 line Ext. 111 DDI. 123456 Mob. 07800000000 Example: Ext. 111 | DDI. 123456 | Mob. 07800000000 Would also be nice to include it on the pop up profile too Cheers, Jamie
Hi, Is it possible to shows custom field under the username on the profile page? I would like to display 3 fields on 1 line Ext. 111 DDI. 123456 Mob. 07800000000 Example: Ext. 111 | DDI. 123456 | Mob. 07800000000 Would also be nice to include it on the pop up profile too Cheers, Jamie
JDobbsy1987 Member Aug 9, 2019 #2 Managed to sort this by adding the following to the "member_tooltip" template Code: <xf:if is="{$user.Profile.custom_fields.profile_extno}"> Ext. {$user.Profile.custom_fields.profile_extno} </xf:if> <xf:if is="{$user.Profile.custom_fields.profile_mobno}"> Mob. {$user.Profile.custom_fields.profile_mobno} </xf:if> If there is a better way please advise. Cheers. Upvote 0 Downvote
Managed to sort this by adding the following to the "member_tooltip" template Code: <xf:if is="{$user.Profile.custom_fields.profile_extno}"> Ext. {$user.Profile.custom_fields.profile_extno} </xf:if> <xf:if is="{$user.Profile.custom_fields.profile_mobno}"> Mob. {$user.Profile.custom_fields.profile_mobno} </xf:if> If there is a better way please advise. Cheers.