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

Pages: [1] 2
1
General SMFShop Discussion / Re: Moderator access SMF Shop ACP?
« on: June 27, 2006, 03:47:27 am »
Stop bugging Dan, poor guy!

2
General SMFShop Discussion / Re: Status of SMFShop development...
« on: June 26, 2006, 07:57:07 pm »
How about taxes or a lottery ??

3
General SMFShop Discussion / Re: Item Ideas
« on: June 26, 2006, 07:54:56 pm »
Quote
I have tried this, but like daniel i don't think it is very useful as it only works on ie, and at least on my forum the majority of users are using firefox or some other browser (mostly firefox)

Now if firefox would only use this....
Yeah, I know, that's why I don't support it (I use Opera myself)...

:(((

4
General SMFShop Discussion / Re: Item Ideas
« on: June 26, 2006, 12:15:13 am »
Does it work for you?
Try it please!  :'(

5
General SMFShop Discussion / Re: Item Ideas
« on: June 24, 2006, 06:11:00 pm »
*bump

6
General SMFShop Discussion / Re: Item Ideas
« on: June 24, 2006, 12:26:35 am »
omg...  when i paste your code (without the ') it happen nothing!

7
General SMFShop Discussion / Re: Item Ideas
« on: June 24, 2006, 12:19:27 am »
oh iam sorry, i havent read your post exactly, i think its done now

8
General SMFShop Discussion / Re: Item Ideas
« on: June 24, 2006, 12:13:21 am »
Iam so stupid in this category.

Code: [Select]
<?php
/**********************************************\
| SMFSHOP (Shop MOD for Simple Machines Forum) |
|         (c) 2005 DanSoft Australia           |
|      http://www.dansoftaustralia.net/        |
\**********************************************/

//File: ChangeDisplayNameCSS.php
//      Item that allows member to change style of their name. The style being changed
//      is fully customisable by the admin.

//NOTE: Some file edits are necessary to make this item work!!!


//VERSION: Not in SMFShop install as yet (item version 0.1 beta)
//DATE: 20th September 2005

class item_ChangeDisplayNameCSS extends itemTemplate {
    function 
getItemDetails() {
        
$this->name "Change display name style";
        
$this->desc "Change the style of your display name (style is admin-definable)";
        
$this->price 75;
        
        
$this->require_input false;
        
$this->can_use_item true;
    }

    function 
getAddInput() {
        return 
"New Style: <input type='text' name='info1' value='font-style:oblique'><br>
        NOTE: The 'New Style' can be any formatting CSS Properties. <b>Do not</b> put a 
        semicolon (;) at the end as it is appended automatically.<br><br>"
;
    }

    function 
onUse() {
        global 
$db_prefix$ID_MEMBER$item_info;
        
        
$result db_query("UPDATE {$db_prefix}members
                            SET shop_nameStyle = 
                                concat(shop_nameStyle,'
{$item_info[1]}; ')
                            WHERE ID_MEMBER = 
{$ID_MEMBER}",
                            
__FILE____LINE__);

        return 
"Successfully updated your display name style!";
    }

}

?>


What to do in this file?

9
General SMFShop Discussion / Re: How to give Interest?
« on: June 24, 2006, 12:05:21 am »
i think iam to stupid to use a cron job.

10
General SMFShop Discussion / Re: How to give Interest?
« on: June 23, 2006, 07:28:25 pm »
ah there was an error in the script.
it works now
thx

11
General SMFShop Discussion / Re: How to give Interest?
« on: June 23, 2006, 07:23:05 pm »
i get an error :(

12
General SMFShop Discussion / Re: How to give Interest?
« on: June 23, 2006, 04:40:17 am »
eh .. how to call the script myself?

13
General SMFShop Discussion / Re: How to give Interest?
« on: June 23, 2006, 04:38:57 am »
Yes, but how to call the script?!

14
General SMFShop Discussion / How to give Interest?
« on: June 23, 2006, 03:52:18 am »
Plz

15
General SMFShop Discussion / Re: Item Ideas
« on: June 23, 2006, 03:45:02 am »
no one read this forum?

Pages: [1] 2