Author Topic: [SOLVED] Changing Shop text at the side of posts??  (Read 2613 times)

Offline Smith Online

[SOLVED] Changing Shop text at the side of posts??
« on: May 13, 2007, 07:22:04 pm »
Hi at the side of peoples posts it says send money to users name i would like to change this so it says send credits to the users name.

Also in the shop down the left it says send money to someone i would also like to change this so that it says send credits to someone.

can anyone help please

Regards

Smith Online


Offline feeble

Re: Changing Shop text at the side of posts??
« Reply #1 on: May 13, 2007, 08:36:57 pm »
youll find what you need in Shop.english.php
its located in
Forum/themes/default/language/ directory

Offline Smith Online

Re: Changing Shop text at the side of posts??
« Reply #2 on: May 13, 2007, 08:56:41 pm »
Superb Thanks found everything that said money and changed to credits.

Thanks  :D

Theres just were it says at the side of posts send money to user thats not in Shop.english.php ??

Regards

Smith Online
« Last Edit: May 13, 2007, 09:00:21 pm by Smith Online »


Offline David

Re: Changing Shop text at the side of posts??
« Reply #3 on: May 14, 2007, 04:04:17 am »
In your theme find Display.template.php the shop system installs the following additional code:

Code: [Select]
// Show how many posts they have made.
// echo '
// ', $txt[26], ': ', $message['member']['posts'], '<br />
// <br />';

            // 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

 Near the end of that code you'll see
Quote
Send Money to
Change that to what you require it to say and you should be a happy camper.

Offline Smith Online

Re: Changing Shop text at the side of posts??
« Reply #4 on: May 14, 2007, 04:24:02 am »
Superb thanks worked like a charm  :D

Regards

Smith Online