[SOLVED] Anyone know how to make custom profile page for special user or specified user group ?

Citrus

Member
Registered
Joined
Oct 5, 2020
Messages
18
Points
13

Reputation:

Hello dudes. I want to make a custom profile page for a certain user or group in my forum and everything should be editable. How can I do that ?


For Example:
eNJvG63.png


PROBLEM WAS SOLVED

Solution:

<xf:if is="{{$user.isMemberOf(x)}}">
Set a code for special groups
<xf:else />
Set a code for others
</xf:if>


Change (x) with group id, eg
<xf:if is="{{$user.isMemberOf(2}}">
 
Last edited:

DareSec

Inforc3r
Staff member
Administrator
Moderator
S.V.I.P Member
Collaborate
Registered
Joined
May 25, 2019
Messages
1,381
Points
523

Reputation:

its required custom customization . hire developer
 

zeus1971

Collaborate
Collaborate
Registered
Joined
Apr 18, 2020
Messages
310
Points
73

Reputation:

What do you mean with " should be editable " exactly ?
You can create groups, assigning to those groups special banners, and promote them automatically for trophy, or nr. of messages, etc...
 

Kenpachi

Well-known member
Registered
Joined
Oct 1, 2019
Messages
171
Points
53

Reputation:

Does anyone know if the LEVEL Awards feature is addons or custom code?
 

Citrus

Member
Registered
Joined
Oct 5, 2020
Messages
18
Points
13

Reputation:

i don't know website. i found this image from here.
 

Jace

Collaborate
Collaborate
Registered
Joined
Aug 9, 2020
Messages
169
Points
73

Reputation:

yeah try using conditional statements
 

Citrus

Member
Registered
Joined
Oct 5, 2020
Messages
18
Points
13

Reputation:

can you tell me which conditional statements please. i can't find.
 

Citrus

Member
Registered
Joined
Oct 5, 2020
Messages
18
Points
13

Reputation:

@Kei still can't find it. I want everyone to be able to see the page design for a specific user, please I would appreciate it if you could help.
 

Jace

Collaborate
Collaborate
Registered
Joined
Aug 9, 2020
Messages
169
Points
73

Reputation:

@Citrus bruh... theres literally conditional statements for usergroup
 

Citrus

Member
Registered
Joined
Oct 5, 2020
Messages
18
Points
13

Reputation:

@Kei yeah, i used the conditional statement but the content did not show up in other groups. I want the default design to appear in normal members, and the design I have set to appear in the group I have determined.
 

coinsy

Active member
Registered
Joined
Jul 11, 2020
Messages
25
Points
13

Reputation:

@Citrus use this

<xf:if is="{{$xf.visitor.isMemberOf(x)}}">
Show code to special group
<xf:else />
Show code to other groups
</xf:if>


Change (x) with group id, eg
<xf:if is="{{$xf.visitor.isMemberOf(2}}">
 

Jace

Collaborate
Collaborate
Registered
Joined
Aug 9, 2020
Messages
169
Points
73

Reputation:

@Citrus i said theres literally conditional statements for usergroup even for specific is there
you just have to know how to use it
 

Citrus

Member
Registered
Joined
Oct 5, 2020
Messages
18
Points
13

Reputation:

Nothing change.

Other groups see like this still.
they-see-like-this.png


I want to other users profile like this except me.
i-want-to-other-users-profile-like-this-except-me.png


But other groups can be able to see my profile like this.
but-i-want-to-show-just-for-me-like-this.png


After your code they see still like first ss.
 
Top