inherit
138210
0
Feb 3, 2013 20:08:30 GMT -8
misskika
5
March 2009
misskika
|
Post by misskika on Feb 3, 2013 2:23:44 GMT -8
You earn for creating a new topic and for the post. Am unsure of 0 is supported, probably not as I setup my own defaults in code, I will look at changing that. For member groups, yes, can be done now, since ProBoards have included additional info for us, so I'll think about it once I get the plugin stable. Actually, it works sometimes? At first it was changing everything as if it was originally at 0. But now, suddenly, when they post it adds on to the money I already added. I don't know what's going on haha. But no complaints here, as long as it's working! c:
|
|
inherit
117281
0
Nov 9, 2013 16:51:42 GMT -8
Serenitystar
62
January 2008
morgan32
|
Post by Serenitystar on Feb 4, 2013 16:14:44 GMT -8
Plugin is still a bit buggy. Sometimes it awards the money, and other times it doesn't. ._.
|
|
inherit
135276
0
Jun 4, 2013 20:08:44 GMT -8
Vampire Zen
Exodus 14:14
488
December 2008
deadend123
|
Post by Vampire Zen on Feb 5, 2013 14:00:57 GMT -8
I'm getting word from a member of my forum that they're not seeing their currency.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Feb 5, 2013 22:57:08 GMT -8
Yo. Say I have a completely different mini-profile layout that works off of tables instead of the usual text-based layout, so it's more like: Status: | online | Joined: | June 2008 | Gender: | | Posts: | 10 |
Is there any jQuery magic I can use to insert a new row with the information in the same <td>Name:</td><td>$0</td> format? This plugin is awesome, but it's a bit of a pain to implement it into a heavily customized layout. It'd be cool if I could replace a mini-profile custom field with it or something, since most themes will likely be built with custom fields dynamically added to match the format.
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Feb 6, 2013 0:51:10 GMT -8
Yo. Say I have a completely different mini-profile layout that works off of tables instead of the usual text-based layout, so it's more like: Status: | online | Joined: | June 2008 | Gender: | | Posts: | 10 |
Is there any jQuery magic I can use to insert a new row with the information in the same <td>Name:</td><td>$0</td> format? This plugin is awesome, but it's a bit of a pain to implement it into a heavily customized layout. It'd be cool if I could replace a mini-profile custom field with it or something, since most themes will likely be built with custom fields dynamically added to match the format. Yo Here is the plan... - Use 2 classes, 1 for the money name, and 1 for the money; this way the user can enter them into their template and my plugin will auto fill with the data... <td class="pd_money_name"></td><td class="pd_money_money"></td> - Allow other plugins / codes to add the info to the mini profile. The plugin will have an option to turn this on or off, if on, then this plugin won't add any data to the mini profile, as it will expect a code to do it like so. // Need to check if money plugin is there, and if mini profile is disabled
if(net_pixeldepth_money && net_pixeldepth_money.mini_profile_disabled()){
/* * money will hold an object... {name: "Money Name", symbol: "£", amount: "3,234", amount_unformatted: "3234"} */ var money = net_pixeldepth_money.get(1); // Gets data for user id 1 $(".mini-profile").find(".some-table").append($("<tr><td>" + money.name + ":</td><td>" + money.amount + "</td></tr>")); } Am open to suggestions for anything that will make it easy. None of the above is set in stone yet, as the plugin in it's current state is not stable, once I have bugs squashed, I will look at implementing the above.
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Feb 6, 2013 1:18:53 GMT -8
Plugin is still a bit buggy. Sometimes it awards the money, and other times it doesn't. ._. What browser and version are you using? I've done some testing this morning, and everything is working as expected for me in latest version of Firefox.I'm getting word from a member of my forum that they're not seeing their currency. Browser and version please?Please use latest version released today. See below post for details.
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Feb 6, 2013 1:53:55 GMT -8
Version 0.3.2 has been released and available to download from the first post.
Please make sure you install this version before reporting any bugs, same goes for responding to issues with a previous version. The reason why, is that I have fixed some issues with new installs of the plugin.
Now when you install the plugin, it will require you to set some settings first, I will change this in the future so it's not needed, but for the moment we do not have the ability to set plugin defaults apart from in code, which can cause some issues and require more work.
One big change in this release, is that editing money from the mini profile is no longer an option. Main reason was because of pagination issues that cause the click even to become lost, and I didn't want to try too hard to reapply the event, so I decided that editing money from the users profile and on the members list (which strangely doesn't suffer this issue) is good enough.
Apart from any bugs that are reported, or I find, the next release should hopefully contain a working bank.
|
|
inherit
163839
0
May 25, 2017 20:48:34 GMT -8
Maiden
1,020
February 2011
dreamaiden
|
Post by Maiden on Feb 6, 2013 2:18:40 GMT -8
Hi PeterJust wanted to check, we can install this update and won't need to redo our member money? (Just want to know if i should try and write down everyones money somewhere before switching over....?)
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Feb 6, 2013 2:28:59 GMT -8
Hi PeterJust wanted to check, we can install this update and won't need to redo our member money? (Just want to know if i should try and write down everyones money somewhere before switching over....?) Shouldn't need to delete the key data, so you should be fine as nothing has changed in the way data is stored.
|
|
inherit
22402
0
Nov 8, 2021 11:42:58 GMT -8
DeltaDart
Ultimate Interceptor
522
April 2004
mcgeep
|
Post by DeltaDart on Feb 6, 2013 2:38:44 GMT -8
Hi PeterJust wanted to check, we can install this update and won't need to redo our member money? (Just want to know if i should try and write down everyones money somewhere before switching over....?) Shouldn't need to delete the key data, so you should be fine as nothing has changed in the way data is stored. Wouldn't let me install since I reached my key limit. Had to remove old.
|
|
inherit
163839
0
May 25, 2017 20:48:34 GMT -8
Maiden
1,020
February 2011
dreamaiden
|
Post by Maiden on Feb 6, 2013 3:04:30 GMT -8
Hi PeterJust wanted to check, we can install this update and won't need to redo our member money? (Just want to know if i should try and write down everyones money somewhere before switching over....?) Shouldn't need to delete the key data, so you should be fine as nothing has changed in the way data is stored. Yup, worked perfectly. Thanks
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Feb 6, 2013 6:02:24 GMT -8
Here's an early preview of what the bank will look like...
|
|
inherit
187610
0
Aug 15, 2013 16:01:33 GMT -8
Mordecai
21
December 2012
mordecai1
|
Post by Mordecai on Feb 8, 2013 8:19:56 GMT -8
I've made a custom Mini-Profile for my forum, and I'm trying to make it so that I can enter the Monetary tool as a field. Like: $[user.custom.title] but specific to this code so that it displays the amount of money said user has. Link to post w/Mini-Profile code implemented: jabberjay.proboards.com/thread/2525/checkThe Code: atm it is this bit "$[pd_money_money]" <link href='http://fonts.googleapis.com/css?family=Lobster+Two' rel='stylesheet' type='text/css'> <center><div style="width: 150px; font-size: 15px; font-weight: bold; padding-right:20px;">$[user]</div></center> <div style="width: 130px;"><div style="width: 130px; background: #121310;text-align:justify; color: #fff;line-height: 90%;font-family: arial; text-transform:lowercase; font-size: 11px; padding: 10px;"><i>{if $[user.personal_text.message]}$[user.personal_text]{/if} </i></div><div style="width: 150px; height:150px; border: #fff 3px solid”>{if $[user.avatar]} <div class="avatar">$[user.avatar]</div><p><br> {/if}</div><table cellspacing="1" cellpadding="1"><td><div style="width: 65px; height:10px; background: #121310; border-bottom: #999 3px solid;text-align:center; line-height: 120%; padding: 5px 0px; 5px 0px; font-family: arial; text-transform:uppercase; font-size: 8px"> Posts: $[user.posts]</div></td><td><div style="width: 65px; height:10px; background: #121310; border-bottom: #999 3px solid;text-align:center; line-height: 120%; padding: 5px 0px; 5px 0px; font-family: arial; text-transform:uppercase; font-size: 8px"> {if $[user.group]} $[user.group.name] {elseif $[user.rank]} $[user.rank.name] {/if} </div></td></tr><td><div style="width: 65px; height:10px; background: #121310; border-bottom: #999 3px solid; text-align:center; line-height: 120%; padding: 5px 0px; 5px 0px; font-family: arial; text-transform:uppercase; font-size: 8px"> $[pd_money_money] </div></td><td><div style="width: 65px; height:10px; background: #121310; border-bottom: #999 3px solid; text-align:center; line-height: 120%; padding: 5px 0px; 5px 0px; font-family: arial; text-transform:uppercase; font-size: 8px"> {if $[user.custom_title]}$[user.custom_title]<br />{/if}</div></td></tr>
<td><p><br><div style="width: 150px; height:10px; background: #121310; border-bottom: #999 3px solid;text-align:center; line-height: 120%; padding: 5px 0px; 5px 0px; font-family: arial; text-transform: uppercase; font-size: 8px"> {if $[user.group.stars]} $[user.group.stars] {elseif $[user.rank.stars]} $[user.rank.stars] {/if} </div></td> </table> <div style="width: 150px; text-align:center; font-family: lobster two; text-transform:lowercase; font-size: 9px;letter-spacing: 4px; font-style:italic">{if $[user.is_online]}<br /><span class="italic"> member is<p> currently<p> ONLINE YO!</span>{/if}</div></div>
|
|
inherit
149534
0
Mar 24, 2024 21:57:30 GMT -8
Smudges
298
November 2009
reverse
|
Post by Smudges on Feb 8, 2013 21:00:25 GMT -8
Peter how would i get the amount of money to display in a tables layout i had a look at the mini profile code and i cant see anything
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Feb 10, 2013 2:38:52 GMT -8
Mordecai, SmudgesSupport for custom mini profiles will come soon. Am unsure how I want to do it yet, as there are quite a few ways to go about it. I did discuss it in a previous post, please have a read of it and let me know.
|
|