XF 1.5 Help a noob - Simple Account Upgrade Template tweak

Jme4200

Member
Hello guys

merry christmas to all :)

I am attempting what is probably a simple tweak to the upgrade template page but i would love a second opinion so i dont break something.

Please see the screenshot below for the current layout. What i would like to do is duplicate the upgrade title (in this case its "Master Bundle") and i would like to place the duplicate title above the price/length on the right side. I don't want to remove the main title, just add an additional smaller title above the price.

BoTCjOhvTXmrPjnSoNdd5w.png


Can this be done?

Many thanks for any help you might be able to offer me
 
Admin Panel -> Appearance -> Styles & Templates -> Styles -> Choose "Templates" for the style -> account_upgrades

Find :
Code:
<div class="cost">
{$upgrade.costPhrase}
</div>
Replace it with :
Code:
<div class="cost">
{$upgrade.title} <br/>
{$upgrade.costPhrase}
</div>

Change it up to suit your needs~
 
Back
Top Bottom