Quote:
Originally Posted by jojo77
thanks for the quick answer. I do have another question. On the estore page, I'm trying to get the "Ebux" out of the header that says "(My username) Ebux Estore Information"
I searched in phrase manage for the word Ebux but that line doesn't show up for me to edit
|
You can change it in your AdminCP >> Styles & Templates >> Style Manager >> estore_main template.
Look for:
Code:
<span class="smallfont"><strong><a href="member.php?u=$userinfo[userid]">$userinfo[username] $vbphrase[ebux_name] $vbphrase[estore_name] $vbphrase[estore_information]</a></strong></span>
and remove the:
Code:
$vbphrase[ebux_name]
So it looks like:
Code:
<span class="smallfont"><strong><a href="member.php?u=$userinfo[userid]">$userinfo[username]'s $vbphrase[estore_name] $vbphrase[estore_information]</a></strong></span>
Also notice on the above code how I changed:
Code:
$userinfo[username]
to:
Code:
$userinfo[username]'s
So it says "Usernames' eStore Information" now.
Hope this helps.