Author Topic: [SOLVED] Replacing View Inventory & Send money to with Image Buttons : help pls!  (Read 3012 times)

Offline preddy25

// BEGIN SMFShop MOD New Version Code
         // Removed one <br /> from end of post count line.
         echo '
                        ', $txt[26], ': ', $message['member']['posts'], '<br />
                        ';
                        
         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

Display.template.php

Hi ! can anyoone help me recode this lines so that it will display image buttons like the ones in technodragon forum http://dragontalk.net , but i want them side by side and when mouse over it would display the info text?

Should be simple for you experienced modders! Thanks!!

Offline CRONUS

Change
Code: [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 />';

to
Code: [Select]
echo '
                        ', $modSettings['shopCurrencyPrefix'], $message['member']['money'], $modSettings['shopCurrencySuffix'], '<br /><br />
                        <a href="', $scripturl, '?action=shop;do=invother2;member=', $message['member']['username'], '"><img src="' . $settings['images_url'] . '/view_inventory.gif" alt="View Inventory" border="0" /></a><br />
                        <a href="', $scripturl, '?action=shop;do=sendmoney;member=', $message['member']['username'], '"><img src="' . $settings['images_url'] . '/send_money.gif" alt="Send Money to ', $message['member']['name'], '" border="0" /></a><br />';

You have to make view_inventory.gif and send_money.gif and put these to images dir

Offline preddy25

thanks alot that work very well! thumbs up for ya!

:D O0