Author Topic: [SOLVED] Avatar Misplacement  (Read 3397 times)

Zion

  • Guest
[SOLVED] Avatar Misplacement
« on: July 22, 2007, 04:18:48 am »
Since I installed this shop mod, My avatar apears below my points count etc.

Is there anyway i can modify it to show the points underneath my avatar?

(im a fairly experienced template editor so i only need to know why its changed and what bit of code it is :)

In other words i can follow instructions LOL.

Thanks :)

Offline feildmaster

Re: Avatar Misplacement
« Reply #1 on: July 22, 2007, 08:31:42 am »
yeah sure,

the stuff is in display.php i will give u the code that displays each part...

Code: (Money and Inv, Send) [Select]
echo '
', $modSettings['shopCurrencyPrefix'], $message['member']['money'], $modSettings['shopCurrencySuffix'], '<br /><br />
<a href="', $scripturl, '?action=shop;do=invother2;member=', $message['member']['username'], '">View Inventory</a><br />
<a href="', $scripturl, '?action=shop;do=sendmoney;member=', $message['member']['username'], '">Send Money to ', $message['member']['name'], '</a><br />';
//END SMFShop code

Code: (Avatar) [Select]
if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
echo '
<div style="overflow: auto; width: 100%;">', $message['member']['avatar']['image'], '</div><br />';

yeah... place the money code below the avatar code... n ur set...

Zion

  • Guest
Re: Avatar Misplacement
« Reply #2 on: July 22, 2007, 08:46:28 am »
Thank you very much mate :)

Cheers, got it fixed :)