Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Martin

Pages: [1]
1
Modifications / Re: Mod: Bad Spelling Tax
« on: July 26, 2007, 01:04:17 am »
Nice mod, and yeah, you should make the Smartness system (maybe even make it possible to enable/disable the points and ban system for it) for SMF, it would be really useful for some forums (including mine).

2
General SMFShop Discussion / Re: Unwanted button
« on: March 13, 2007, 06:28:42 am »
Go to your themes "index.template.php" and look if there's a duplicate of the shop button (CTRL+F and type in "Shop" to find it quickly), and then remove the duplicate from there, save, and reupload that file. Should be fixed now.

3
Items / Re: Item request: Lotery
« on: March 05, 2007, 03:23:53 am »
That's a great idea, hopefully someone makes this :)

4
General SMFShop Discussion / Re: SMFPets is Finally Here
« on: February 28, 2007, 03:36:13 am »
I noticed a exploit, you can level up your pet without waiting all the time it says, just click "Level It Up!" button and it will gain a level. Please fix this, or maybe I did something wrong?

5
General SMFShop Discussion / Re: SMFPets is Finally Here
« on: February 27, 2007, 05:24:10 pm »
That's awesome, I found a bug though:

SMF Version: 1.1 RC3

When deleting something from the shop, the "Category (X items)" fails to update

Edit:
It updates when I add a new item there though

6
Coding / Re: Making Packages?
« on: February 23, 2007, 05:57:12 pm »

7
GREAT! That works, thanks a lot :D

8
Coding / Re: No credits at posting profile.
« on: February 10, 2007, 10:20:54 am »
Open (yourtheme)/display.template.php

(My display.template.php is located in E:\D2K5Server\www\Themes\babylon\ for example, easier for you to find it this way incase you don't know where it is)

Find:

Code: [Select]
', $txt[26], ': ', $message['member']['posts'], '';
Add Under:

Code: [Select]
echo "<a href='$scripturl?action=shop;do=invother2;member={$message['member']['username']}'>Inventory</a><br>";
echo '<a href="', $scripturl, '?action=shop;do=sendmoney;member=', $message['member']['username'], '">Send Money</a><br />';


echo '
', $modSettings['shopCurrencyPrefix'], $message['member']['money'], $modSettings['shopCurrencySuffix'], '<br /><br />';

Save it and re-upload the display.template.php, it should now appear :)
I've modified the original abit, but you can always change it how you want it to look.

9
This topic is still unresolved :( lol

10
Coding / Idea: Purchase Amount (Qty) box thingy
« on: February 04, 2007, 11:33:16 am »
I've got an idea of a qty box thing under every item in the shop, like you can specify how many of that item you want to buy, that could make it a bit easier to buy loads of items, some of my forum members are requesting that, I'd make it myself but I don't know how.

11
Well, here's my current faulty code:

Code: [Select]
// User Statistics
if (!empty($settings['enable_news']))
echo '
<div class="headertitles" style="width: 260px;"><img src="', $settings['images_url'], '/blank.gif" height="12" alt="" /></div>
<div class="headerbodies" style="width: 260px; position: relative; background-image: url(', $settings['images_url'], '/box_bg.gif); margin-bottom: 8px;">
<img src="', $settings['images_url'], '/', $context['user']['language'], '/newsbox.gif" style="position: absolute; left: -1px; top: -16px;" alt="" />
<div style="height: 50px; overflow: auto; padding: 5px;" class="smalltext">

', sprintf($txt['userareahave'], ($context['user']['money'])),
($modSettings['shopBankEnabled'] ? sprintf($txt[''],
  ($context['user']['moneyBank'])) : ''), '
  <br>
 
', sprintf($txt[''], ($context['user']['money'])),
($modSettings['shopBankEnabled'] ? sprintf($txt['userareahave2'],
  ($context['user']['moneyBank'])) : ''), '


</div>
</div>';

I know, laugh as much as you want, I ain't that smart at PHP but usually I get stuff I need, done.

12
Hmm, I guess no one can help then, it's been days...I've tried many ways, but none of them is successful.. (Sorry for this whole double and tripleposting..)

13
Coding / Re: Members allowed to sell their own files
« on: February 02, 2007, 09:23:54 am »
Yeah, I need the same, almost everyone are asking if they can add stuff into the shop. I really hope someone makes this, that'd be great...

14
Coding / Display amount of your money in the News Box (Stats box for me)?
« on: January 31, 2007, 06:16:54 am »
Sorry for the double post but can anyone tell me how? I still haven't figured out  :-\

15
Coding / Display amount of your money in the News Box (Stats box for me)?
« on: January 29, 2007, 07:42:24 pm »
Okay, here's what I've done:

It all works fine, it displays the money there but the problem is that it displays only in the shop and in the admin cp. On the main page and everywhere else it's just blank, what should I do to make it work on every page?

Pages: [1]