xF2 Add-on Forum user group

ilona

Collaborate
Collaborate
Registered
Joined
Mar 15, 2023
Messages
93
Points
28

Reputation:

Hello, this is addon or what?
1213F44B-9970-4257-B5F0-D2D1D83249E3.jpeg


If not, how to create this bar?
 

ShieldX

Well-known member
Registered
Joined
Mar 27, 2022
Messages
466
Points
53

Reputation:

there is no addon for xenforo , you need to make a customization .
 

one_finger_man

Well-known member
Registered
Joined
Jan 20, 2022
Messages
385
Points
53

Reputation:

you could do some thing like this put it in widget_members_online,
HTML:
<div class="block-footer">
            <span class="block-footer-counter">{{ phrase('online_now_x_members_y_guests_z',{
                'total': number($online.counts.total),
                'members': number($online.counts.members),
                'guests': number($online.counts.guests)})
            }}</span>
        </div>

You can either put things in that block after the </span>, or create a new block like this:
HTML:
<div class="block-footer">
            <span class="block-group-key">
                <span class="username--style33">Chief Executive Officer</span>,
                <span class="username--style34">Chief Operating Officer</span>,
                <span class="username--style30">Managing Director</span>,
                <span class="username--style24">Chairperson</span>,
                <span class="username--style31">Director</span>,
                <span class="username--style32">Vice-Director</span>,
                <span class="username--style38">Deputy-Chairperson</span>,
                <span class="username--style37">Court Justice</span>,
                <span class="username--style35">Auditor</span>,               
                <span class="username--style19">Shareholder</span>,
                <span class="username--style20">Foreign-VIP</span>,
                <span class="username--style2">Visitor</span>,
                <span class="username--style45">Bot</span>
            </span>
        </div>


258139-84a49cb3d74a44f4f8db90817287e420.png
 
Top