XF 1.3 Additional text on upgrade page

JamesBrown

Well-known member
I'm stuck trying to figure this out. I would like to add some text just above the Orange bar showing the available upgrades. Which template and where within it should I place the html. Thanks in advance

upgrades.webp
 
Thanks I found the template, account_upgrades But text I add does not show up. Can someone let me know how I met get some text to appear on this page. Thanks again
 
Edit the template like so:
HTML:
<xen:require css="account_upgrades.css" />

<p class="importantMessage">{xen:phrase your_phrase}</p><br />

Add the line shown and create your phrase to suit.
 
Thanks Brogan, I'm revisiting this as I've still not got it to work.

I've made a phrase called text_test

And I've tried adding this in a dozen places in the template. but it never shows up

HTML:
<xen:require css="account_upgrades.css" />

<p class="importantMessage">{xen:phrase text_test}</p><br />
 
Top Bottom