inherit
250246
0
Dec 5, 2017 3:25:20 GMT -8
/deleted/
epic
155
November 2017
deleted
|
Post by /deleted/ on Feb 7, 2018 21:03:55 GMT -8
I was thinking about creating a game type of thing but I actually don't know where I would begin. You click a button you press repeatedly to get +1 cash and there's a button and it chooses a random item from a list of item ID's to give. Would something of the sort even be possible, Peter? Seems like an interesting concept. Got inspired by a game I play and thought "hmm, maybe this would be a cool game thing to have on a forum".
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on Feb 7, 2018 23:55:36 GMT -8
Hey. I was just wondering if there is a way to edit money amounts via the members page instead of via profiles. My profile is so heavily customized that putting the plugin in the profile is just a hassle I really don't want to put on you since it's my fault for removing the classes. Is there any way I can give myself editing capability via the members page?
|
|
inherit
251046
0
Apr 23, 2024 11:41:02 GMT -8
reckoner
8
December 2017
reckoner
|
Post by reckoner on Feb 12, 2018 14:13:00 GMT -8
hi Peter , while the money category does show up in the miniprofile it no longer gives money per post. it used to work but i'm not sure exactly when it stopped working, hence why my admin account has over 200 points and no one else has any. is there a solution i am overlooking? in-flore.proboards.com/thanks (:
|
|
inherit
215402
0
Nov 24, 2024 1:58:58 GMT -8
Tix Mascot
Italy is my second homeland.
377
October 2014
heretix
|
Post by Tix Mascot on Feb 13, 2018 15:33:15 GMT -8
Peter, I just noticed that one of our members has a negative bank account balance. I didn't even know that this was possible. Not a big deal, just thought you and others might be interested to know about it. www.heretix.boards.net
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on Feb 15, 2018 22:48:56 GMT -8
|
|
inherit
246669
0
Jan 2, 2023 13:25:26 GMT -8
Philip
97
July 2017
phil82
|
Post by Philip on Feb 16, 2018 18:25:35 GMT -8
Have you tried to add XP for the user, using the debugger? You may get some error data back, if error reporting is built in to the system(plugin).
I have no idea what might be causing the issue but my educated guess is he/her key data has overflown a (user)key.
BTW that user link is invalid.
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on Feb 16, 2018 23:48:35 GMT -8
Have you tried to add XP for the user, using the debugger? You may get some error data back, if error reporting is built in to the system(plugin). I have no idea what might be causing the issue but my educated guess is he/her key data has overflown a (user)key. BTW that user link is invalid. Nope. The problem is I customized my profiles all to high heaven and I can't even edit xp right now. I'll try resetting my profiles to basic and play with it to figure out the problem. I appreciate the response. I'll look for an error and see if the key is overflown. And the user link isn't invalid, it's my fault for having the profile not viewable to the public.
|
|
bai
Junior Member
I coughed. Then I went into labor.
Posts: 209
inherit
tbsofficial@outlook.com
241711
0
Sept 23, 2018 14:23:39 GMT -8
bai
I coughed. Then I went into labor.
209
February 2017
bai
|
Post by bai on Feb 16, 2018 23:53:23 GMT -8
PeterHello there! I was wondering if you could help me out with a donation button code...I don't want to Donation button to display on a user's own profile. Do I wrap it in {if} text to do this?
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on Feb 18, 2018 0:29:12 GMT -8
Peter Hello there! I was wondering if you could help me out with a donation button code...I don't want to Donation button to display on a user's own profile. Do I wrap it in {if} text to do this? Are you wanting it to not display only on a certain user's profile or all user's profiles? If it's only a certain user's profile you can use: {if $[user.id] == "1"}{else}<a class="button" href="/user/$[user.id]?monetarydonation&view=1" role="button">Donation</a>{/if} Obviously replace the "1" with whatever the user id is for that specific profile. Or if you're not trying to exclude just one member and instead have a group where you want to exclude you can do it as: {if $[user.group.id] == "1"}{else}<a class="button" href="/user/$[user.id]?monetarydonation&view=1" role="button">Donation</a>{/if} Let me know if you need any further help. It's not technically good practice to have a blank condition with an else but it'll do what you want it to.
|
|
bai
Junior Member
I coughed. Then I went into labor.
Posts: 209
inherit
tbsofficial@outlook.com
241711
0
Sept 23, 2018 14:23:39 GMT -8
bai
I coughed. Then I went into labor.
209
February 2017
bai
|
Post by bai on Feb 18, 2018 7:48:48 GMT -8
Tiffy-BeanHello! Um no, I just wanted to know if there was a way to stop the button from showing on someone's own profile. Like I can go onto my own profile and see the Donation button, and I don't want that. I only want to see it on someone else's profile.
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on Feb 18, 2018 17:29:03 GMT -8
Tiffy-Bean Hello! Um no, I just wanted to know if there was a way to stop the button from showing on someone's own profile. Like I can go onto my own profile and see the Donation button, and I don't want that. I only want to see it on someone else's profile. {if $[user.id] == "1"}{else}<a class="button" href="/user/$[user.id]?monetarydonation&view=1" role="button">Donation</a>{/if} that would still work. If you put it into the code with your user id it won't show up on your profile. Or are you wanting members not to see it on their own either? If you are the admin of the forum user id would usually be 1. If you're uncertain what your user id is.. your url for your forum should look something like this forumname.proboards.net/user/1 ...if it's 1..then that's your user id. If you're hoping for an option that will make it so people don't see it on their own profiles but do see it on other profiles, that might have to be done using jquery.
|
|
bai
Junior Member
I coughed. Then I went into labor.
Posts: 209
inherit
tbsofficial@outlook.com
241711
0
Sept 23, 2018 14:23:39 GMT -8
bai
I coughed. Then I went into labor.
209
February 2017
bai
|
Post by bai on Feb 18, 2018 20:46:35 GMT -8
Tiffy-Bean Hello! Um no, I just wanted to know if there was a way to stop the button from showing on someone's own profile. Like I can go onto my own profile and see the Donation button, and I don't want that. I only want to see it on someone else's profile. {if $[user.id] == "1"}{else}<a class="button" href="/user/$[user.id]?monetarydonation&view=1" role="button">Donation</a>{/if} that would still work. If you put it into the code with your user id it won't show up on your profile. Or are you wanting members not to see it on their own either? If you are the admin of the forum user id would usually be 1. If you're uncertain what your user id is.. your url for your forum should look something like this forumname.proboards.net/user/1 ...if it's 1..then that's your user id. If you're hoping for an option that will make it so people don't see it on their own profiles but do see it on other profiles, that might have to be done using jquery. Yeah that's what I'm looking for but I know nothing about jquery. Just now taught myself CSS haha! I can live with it if it's impossible or too hard. I'm just bugging about aesthetics™.
|
|
inherit
223470
0
Feb 27, 2019 17:05:53 GMT -8
₪» ⅀ ƪ Ƒ «₪
Original registration date: 2007. DeviantART: http://deviantart.com/ruanly. Discord: Ruanly#7946.
1,281
July 2015
fajita
|
Post by ₪» ⅀ ƪ Ƒ «₪ on Feb 19, 2018 9:29:27 GMT -8
Tiffy-Bean you probably thought of it, but they aren't posting on mobile, are they? (which case they obviously wouldn't have the plugin register their post to give them money)
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on Feb 20, 2018 2:45:20 GMT -8
Tiffy-Bean you probably thought of it, but they aren't posting on mobile, are they? (which case they obviously wouldn't have the plugin register their post to give them money) That is a very good thought and no I hadn't thought of it, but I know that's not the problem. The user has several profiles on the forum (since we use a different profile for each character as a role-playing forum), and she is not experiencing the issue on any of the other profiles. Due to this reason, I thought it might be an for instance in my code and combed through my profile layouts to see if I had any kind of if/foreach instance that would negate it working for her, and again, nothing. I'm thinking I might just solve it by having her make another profile, and delete the one that isn't working, but it was still a very strange problem. Thank you for your input Elf. It was a really good idea on why it might not work.
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on Feb 20, 2018 2:47:24 GMT -8
{if $[user.id] == "1"}{else}<a class="button" href="/user/$[user.id]?monetarydonation&view=1" role="button">Donation</a>{/if} that would still work. If you put it into the code with your user id it won't show up on your profile. Or are you wanting members not to see it on their own either? If you are the admin of the forum user id would usually be 1. If you're uncertain what your user id is.. your url for your forum should look something like this forumname.proboards.net/user/1 ...if it's 1..then that's your user id. If you're hoping for an option that will make it so people don't see it on their own profiles but do see it on other profiles, that might have to be done using jquery. Yeah that's what I'm looking for but I know nothing about jquery. Just now taught myself CSS haha! I can live with it if it's impossible or too hard. I'm just bugging about aesthetics™. I'll tinker around with it. I'm still very new to jquery (as I am in school for coding but still in the beginning stages of it). I've been teaching myself jquery but I'm far from fluent in it. I'll see if I can come up with anything, but if someone else comes up with it before me, then by all means, take their advice. There are a lot of more experienced coders in this forum then I am. However, when I have time, I will try my best to solve your problem for you.
|
|