• Report Links
    We do not store any files or images on our server. XenPaste only index and link to content provided by other non-affiliated sites. If your copyrighted material has been posted on XenPaste or if hyperlinks to your copyrighted material are returned through our search engine and you want this material removed, you must contact the owners of such sites where the files and images are stored.

Customizing the layout with custom user fields

XMAN

Well-known member
Joined
Jul 12, 2021
Messages
20,446
Reaction score
108
Points
63
This is a simple guide explaining how custom user fields can be used to customise the layout and allow members to have some form of control over the content, depending on the options you provide.

For the purposes of this guide, we will be creating a checkbox for members to opt out of seeing the forum statistics in the sidebar.

Create the custom user field

The first step is to create the custom user field, like so:



aa49151939db2.png

A new option will then be present on the account preferences page.


aa49151939db275f801142c2cf714.png
Edit the widget

Now we enter a conditional statement in the widget display condition field to show the widget when the field is unchecked.
The code for that is:

Code:
!
Code:

$xf.visitor.Profile.custom_fields.removeStatistics


4ed2b952b3924.png

Note how removeStatistics matches the ID of the custom user field.


That's it!
Any member who now checks the field in their preferences will no longer see the widget in the sidebar.


The same approach can be used for templates, forums, etc.
Just use the custom user field ID with a conditional statement to show/hide content

Continue reading...
 
Top