Log in

View Full Version : Show text in postbit if user profile field is enabled?


Guest20210415
07-05-2006, 08:44 AM
Hi,

I have a problem. I want to show a small text in the postbit if the user of this post has enabled a radio button based user profile field.

For example:

I have an additional profile field: Show my secondary usergroup: yes/no

Then the postbit should show a small text, let's say "Premium Member", below the username.

How can I show this text based on the settings every user made in his profile.

Thanks in advance for any help.

rgds,
Roland

peterska2
07-05-2006, 10:47 AM
Pop this in your postbit where you want it to show

<if condition="$post[fieldX]=='yes'">stuff for yes<else />stuff for no</if>

You need to replace the X with the field number for the profile field you are using. You can find this by going to the profile field manager page in the ACP and looking for where it says something like field5 for the field that you have created. Remember the number to replace the X with.

if you do not wish anything to show up if the answer is no, then use<if condition="$post[fieldX]=='yes'">stuff for yes</if>

NOTE: The yes must be identical to the one in the profile field otherwise this will not work.

Guest20210415
07-05-2006, 10:55 AM
Thank you. It works. Great help!

Can you help me one more time?
For this feature I need a user profile field which only users can modify who are in a specific usergroup. This field should not be visible during registration and viewing the profile of other users. Just a radio button based user profile field visible at the options page.

Thanks in advance.

peterska2
07-05-2006, 10:59 AM
That's not within the scope of standard features, so it will require some modifications to make it possible.