there is no +&- for XenCentral Feedback System 2.2.6

xjq22

Member
Registered
Joined
Mar 24, 2021
Messages
15
Points
13

Reputation:

1618942221288.png
1618942897624.png
ogposter.png

i need a + and - on the blue are like example shown / remove the original poster logo
again nothink on google
 

Attachments

  • Capture.PNG
    Capture.PNG
    3.1 KB · Views: 94

xjq22

Member
Registered
Joined
Mar 24, 2021
Messages
15
Points
13

Reputation:

im using 2.1 io dark mode forget to add on thread sorry
 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,515
Points
523

Reputation:

what should be the + - and the number, should they have any function ?
 

xjq22

Member
Registered
Joined
Mar 24, 2021
Messages
15
Points
13

Reputation:

but i still need a help to remove original poster badge
 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,515
Points
523

Reputation:

If you just want to remove the thread starter icon, you can set the property: uix_originalPoster to none.

Can be found under:
Appearance -> Styles -> iO Dark Mode - Style properties -> Messages

This will disable to show that section, if you want to replace that section with another code, you need to modify the template: message_macros

Replace that code
HTML:
                <xf:if is="($user.user_id == $threadUserId) && (property('uix_originalPoster') != 'none')">
                    <xf:if is="property('uix_originalPoster') == 'userbanner'">
                        <div class="userBanner message-userBanner uix_userBanner--op">
                            <span class="userBanner-before"></span>
                                <strong>{{ phrase('th_original_poster')}}</strong>
                            <span class="userBanner-after"></span>
                        </div>
                    <xf:elseif is="property('uix_originalPoster') == 'icon'" />
                        <div class="uix_originalPoster__icon" data-xf-init="tooltip" title="{{ phrase('th_original_poster') }}">
                            <xf:fa icon="fa-user-edit" class="mdi mdi-account-edit" />
                        </div>
                    </xf:if>
                </xf:if>
with something you would like.
 
Top