Xenforo 2.1 How to add custom text to any widget?

Thanos Crax

Collaborate
Collaborate
Registered
Joined
Sep 25, 2020
Messages
315
Points
73

Reputation:

Screenshot_20210714-230837.png


This is a widget!!!
I want to add a html text inside it below the Cash line
Like I want to write

1000© = 1$ Cash | Cash = BTC/PayPal

This widget is from DragonByte Credits add-on
 

Soft4Win

Developer
Staff member
Moderator
Collaborate
Registered
Joined
Apr 27, 2019
Messages
370
Points
103

Reputation:

You should be able to add html text in this template : dbtech_credits_widget_wallet

Add your content below this line :

HTML:
<xf:foreach loop="$currencies" value="$currency">
                    <xf:macro template="dbtech_credits_currency_macros" name="wallet"
                        arg-currency="{$currency}"
                    />
                </xf:foreach>
 

Thanos Crax

Collaborate
Collaborate
Registered
Joined
Sep 25, 2020
Messages
315
Points
73

Reputation:

You should be able to add html text in this template : dbtech_credits_widget_wallet

Add your content below this line :

HTML:
<xf:foreach loop="$currencies" value="$currency">
                    <xf:macro template="dbtech_credits_currency_macros" name="wallet"
                        arg-currency="{$currency}"
                    />
                </xf:foreach>
Soft4WinThanks it worked
1626452852032.png
 
Top