How to use Advanced Profile Fields: Difference between revisions From Online Manual

Jump to: navigation, search
(Created page with "== How to use Advanced Profile Fields == '''NOTE:''' If you want more information about '''Advanced Profile Fields''', how to enable them and what it is, please check Featu...")
 
mNo edit summary
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== How to use Advanced Profile Fields ==
== How to use Advanced Profile Fields ==
 
'''Note:''' If you want more information about '''Advanced Profile Fields''', how to enable them, and what they are, please refer to [[Features and Options#Profile Fields|Profile Fields]].
'''NOTE:''' If you want more information about '''Advanced Profile Fields''', how to enable them and what it is, please check [[Features and Options#Profile Fields|Profile Fields]].


== Adding a text Profile Field ==
== Adding a text Profile Field ==
We are going to learn how to add a simple profile field, just with text. Once you have the ''Advanced Profile Fields'' option enabled, navigate to: ''Admin > Configuration > Features and Options... > Profile Fields''. At the bottom of the page you will see the '''Custom Profile Fields''' box. Click the "New Field" button.
Once you have the ''Advanced Profile Fields'' option enabled, go to: ''Admin > Configuration > Features and Options > Profile Fields''. At the bottom of the page you will see the '''"Custom Profile Fields"''' box. Click the "New Field" button.


Fill in the '''Name:''' and '''Description:''' fields according to the Profile Field you want to add. When you arrive to the '''Choose Placement:''' field, be sure it is marked as ''"Standard (with title)"'' or ''"Above Signature"''. It will be displayed at the end of the poster information section or above the user's signature depending on the option selected. You can fill in the rest of fields as requires the use of the Profile Field.
Fill in the '''"Name:"''' and '''"Description:"''' fields according to the Profile Field you want to add. When you arrive at the '''"Choose Placement:"''' field, ensure that you select ''"Standard (with title)"'' or ''"Above Signature"'' from the drop down menu. The Profile Field will be displayed at the end of the poster information section or above the user's signature, depending on the option selected. It will also be displayed on the profile of each user. You can fill in the rest of fields as required for the use of the Profile Field.


== Adding an icon as a Profile Field ==
== Adding an icon as a Profile Field ==
We already know how to add a simple Profile Field to our forum. Now, we are going to learn how to display a Profile Field as an icon, for example, to add someone to Skype by directly clicking an icon.
To display a Profile Field as an icon, follow the same steps as for Adding a Text Profile Field until you reach the '''"Choose Placement:"''' field, where you need to choose ''"With Icons"'' from the drop down menu. It will be displayed next to the ''Profile'', ''Email'', and ''PM'' icons in the poster information.
 
At this point, it is necessary to add some HTML code within the box to the right of '''"Show Enclosed Within Text (Optional):"'''.  The variables that can be used are the following: ''{INPUT}'', ''{SCRIPTURL}'', ''{IMAGES_URL}'' and ''{DEFAULT_IMAGES_URL}''.


Again, navigate to the adding a custom profile field page as mentioned before. Fill in the '''Name:''' and '''Description:''' fields according to the Profile Field you want to add. hen you arrive to the '''Choose Placement:''' field, be sure it is marked as ''"With Icons"''. It will be displayed next to the '''Profile''', '''Email''' and '''PM''' icons in the poster information.
The code to add in the box is: <code><a href="<nowiki>http://website.com/{INPUT}</nowiki>"><img src="{DEFAULT_IMAGES_URL}/icon.gif" alt="{INPUT}" /></a></code>
Now, we will have to put some HTML code. Search the field '''Show Enclosed Within Text (Optional):'''. With this field we are going to use what the user entered in the field to make the action.
*Now, you can edit the code according to your needs:
*# Edit '''<nowiki>"http://website.com/{INPUT}"</nowiki>''': If you want members to be able to add someone to Skype by clicking the icon, you should replace it with <code>skype:{INPUT}</code>. If you want members to be redirected to the user's Twitter profile, add: <code><nowiki>http://twitter.com/{INPUT}</nowiki></code>. These are just a couple of examples of the options available to you.
*# Edit '''"{DEFAULT_IMAGES_URL}"''': If you are using the default forum theme, use '''"{DEFAULT_IMAGES_URL}"''' to select the image from ''Themes/default/images''. If you are not using the default theme set on your forum, use '''"{IMAGES_URL}"''' to select the image from ''Themes/Name of the Theme/images''.
*# Edit '''"icon.gif"''' according to the name of the icon you want to add.


The variables that we can use in this box are: '''{INPUT}''', '''{SCRIPTURL}''', '''{IMAGES_URL}''' and '''{DEFAULT_IMAGES_URL}'''.
The '''"alt"''' attribute at the end of the code is used to display an alternate text if the image fails to load, so if there is any problem loading the image, the information will still be displayed. This attribute must be set as ''"{INPUT}"'' for the information to be displayed.


The code to add in the box is: <code><a href="http://website.com/{INPUT}"><img src="{DEFAULT_IMAGES_URL}/icon.gif" alt="{INPUT}" /></a></code>
[[category:FAQ]]
*Now, you can edit the code according to your needs:
*#''' Edit http://website.com/{INPUT}''' depending on what you want to do. If you want to add someone to skype by clicking the icon, then, you should replace it with <code>'''skype:{INPUT}'''</code>. If you want to redirect to the user's Twitter profile, then add: <code>'''http://twitter.com/{INPUT}'''</code>. And like this, you can do many other things.
*#''' Edit {DEFAULT_IMAGES_URL}''' depending on: If you are using the default forum theme, use '''{DEFAULT_IMAGES_URL}''' but if not, then use '''{IMAGES_URL}'''. This will find the URL to the images directory in your current theme.
*#''' Edit icon.gif''' according to the name of the icon you want to add.

Latest revision as of 19:59, 31 July 2016

How to use Advanced Profile Fields

Note: If you want more information about Advanced Profile Fields, how to enable them, and what they are, please refer to Profile Fields.

Adding a text Profile Field

Once you have the Advanced Profile Fields option enabled, go to: Admin > Configuration > Features and Options > Profile Fields. At the bottom of the page you will see the "Custom Profile Fields" box. Click the "New Field" button.

Fill in the "Name:" and "Description:" fields according to the Profile Field you want to add. When you arrive at the "Choose Placement:" field, ensure that you select "Standard (with title)" or "Above Signature" from the drop down menu. The Profile Field will be displayed at the end of the poster information section or above the user's signature, depending on the option selected. It will also be displayed on the profile of each user. You can fill in the rest of fields as required for the use of the Profile Field.

Adding an icon as a Profile Field

To display a Profile Field as an icon, follow the same steps as for Adding a Text Profile Field until you reach the "Choose Placement:" field, where you need to choose "With Icons" from the drop down menu. It will be displayed next to the Profile, Email, and PM icons in the poster information.

At this point, it is necessary to add some HTML code within the box to the right of "Show Enclosed Within Text (Optional):". The variables that can be used are the following: {INPUT}, {SCRIPTURL}, {IMAGES_URL} and {DEFAULT_IMAGES_URL}.

The code to add in the box is: <a href="http://website.com/{INPUT}"><img src="{DEFAULT_IMAGES_URL}/icon.gif" alt="{INPUT}" /></a>

  • Now, you can edit the code according to your needs:
    1. Edit "http://website.com/{INPUT}": If you want members to be able to add someone to Skype by clicking the icon, you should replace it with skype:{INPUT}. If you want members to be redirected to the user's Twitter profile, add: http://twitter.com/{INPUT}. These are just a couple of examples of the options available to you.
    2. Edit "{DEFAULT_IMAGES_URL}": If you are using the default forum theme, use "{DEFAULT_IMAGES_URL}" to select the image from Themes/default/images. If you are not using the default theme set on your forum, use "{IMAGES_URL}" to select the image from Themes/Name of the Theme/images.
    3. Edit "icon.gif" according to the name of the icon you want to add.

The "alt" attribute at the end of the code is used to display an alternate text if the image fails to load, so if there is any problem loading the image, the information will still be displayed. This attribute must be set as "{INPUT}" for the information to be displayed.



Advertisement: