inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Mar 12, 2017 19:16:47 GMT -8
Is there a way to keep exalt but remove smite as a choice? Not through the plugin. You would have to ask for a custom code to modify it
|
|
Former Member
inherit
guest@proboards.com
87020
0
Nov 26, 2024 17:27:38 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 14, 2017 3:31:41 GMT -8
Thanks for the reply. I will do that.
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Mar 14, 2017 7:25:22 GMT -8
Thanks for the reply. I will do that. Oh and shorty retired so he won't be back ever.
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Mar 21, 2017 6:58:14 GMT -8
Is there a way to keep exalt but remove smite as a choice? Not through the plugin. You would have to ask for a custom code to modify it I'll just post this here in case in anyone else wants to do this. You can remove the exalt or smite options by just not putting anything in the "Give Karma Text" or "Take Karma Text". There will still technically be a link to it, but there's no text to click so no one will know its there. Alternatively, you can use this CSS to make it hidden. a.take-karma { display: none; } Now I know that none of that truly removes the option and anyone that has the know how can get around it, but it's the best option available for the time being. Whenever V6 comes out I will probably rewrite the plugin to include new things and try do what people want and to make sure it works in the new version. So yeah I guess with that, if you have any feature requests for a new version feel free to send it to me in a PM so I can make sure i see it when the time comes.
|
|
gmkev
New Member
Posts: 3
inherit
243541
0
Apr 10, 2017 7:07:24 GMT -8
gmkev
3
April 2017
gmkev
|
Post by gmkev on Apr 7, 2017 7:30:26 GMT -8
Howdy,
The karma system has stopped working on a forum I am a member of. Can anyone clue me in on how to fix it?
Here is the error popup text...
Invalid item.
Error Code: 2 Key: shorty_karma_plugin Object Id: link user-760
Not sure about versions and what not as I am not an admin.
Please help, Kev!
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Apr 7, 2017 12:28:48 GMT -8
Howdy, The karma system has stopped working on a forum I am a member of. Can anyone clue me in on how to fix it? Here is the error popup text... Invalid item. Error Code: 2 Key: shorty_karma_plugin Object Id: link user-760 Not sure about versions and what not as I am not an admin. Please help, Kev! well basically it says that the link you are using to exalt/smite isn't set up correctly for the forum. But not much can be said without a link to the forum
|
|
gmkev
New Member
Posts: 3
inherit
243541
0
Apr 10, 2017 7:07:24 GMT -8
gmkev
3
April 2017
gmkev
|
Post by gmkev on Apr 8, 2017 13:23:45 GMT -8
uh, hi... Are you saying you can help if I give a link? dmscraft.proboards.com/I hope this can be fixed. it used to work. And actually the timing mechanism still seems to work cuz it says you can give karma again at such and such time if you try again. And the karma history says you gave the person karma... but the karma is not actually added. Thanks
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on Apr 8, 2017 18:58:50 GMT -8
uh, hi... Are you saying you can help if I give a link? dmscraft.proboards.com/I hope this can be fixed. it used to work. And actually the timing mechanism still seems to work cuz it says you can give karma again at such and such time if you try again. And the karma history says you gave the person karma... but the karma is not actually added. Thanks It looks like the problem is from the mini-profile link target not correctly getting the user Id from post. Is there anything you can think of that has modified the mini-profile since the profile links work correctly? I can do some more digging into the code of shorty's Alright he has $('div.mini-profile').find('a.user-link').attr('class').split('user-link user-')[1].split(' group-')[0] to get the user id but that no longer works This seems to be because proboards added some classes to the user link such as js-user-link So basically the mini-profile code needs an update. This plugin most likely no longer works on any forum it's currently installed on for the mini-profile. Installing this as a header or footer code in your global header/footer in admin should fix this issue $( document ).ready(function() {setTimeout(function(){ $('a.addUserKarma').unbind("click");$('a.takeUserKarma').unbind("click");$('a.addUserKarma').click(function(){shorty_karma_system.givetakeKarma($(this).parents('div.mini-profile').find('a.user-link').attr('class').split(' user-link user-')[1].split(' group-')[0] , $(this).parents('div.mini-profile').find('a.user-link').text(), 'gave');});
$('a.takeUserKarma').click(function() {shorty_karma_system.givetakeKarma($(this).parents('div.mini-profile').find('a.user-link').attr('class').split(' user-link user-')[1].split(' group-')[0] , $(this).parents('div.mini-profile').find('a.user-link').text(), 'took');}); }, 1000); })
|
|
gmkev
New Member
Posts: 3
inherit
243541
0
Apr 10, 2017 7:07:24 GMT -8
gmkev
3
April 2017
gmkev
|
Post by gmkev on Apr 10, 2017 7:07:30 GMT -8
Howdy, It looks like the problem is from the mini-profile link target not correctly getting the user Id from post. Is there anything you can think of that has modified the mini-profile since the profile links work correctly? I can do some more digging into the code of shorty's Alright he has $('div.mini-profile').find('a.user-link').attr('class').split('user-link user-')[1].split(' group-')[0] to get the user id but that no longer works This seems to be because proboards added some classes to the user link such as js-user-link So basically the mini-profile code needs an update. This plugin most likely no longer works on any forum it's currently installed on for the mini-profile. Installing this as a header or footer code in your global header/footer in admin should fix this issue $( document ).ready(function() {setTimeout(function(){ $('a.addUserKarma').unbind("click");$('a.takeUserKarma').unbind("click");$('a.addUserKarma').click(function(){shorty_karma_system.givetakeKarma($(this).parents('div.mini-profile').find('a.user-link').attr('class').split(' user-link user-')[1].split(' group-')[0] , $(this).parents('div.mini-profile').find('a.user-link').text(), 'gave');});
$('a.takeUserKarma').click(function() {shorty_karma_system.givetakeKarma($(this).parents('div.mini-profile').find('a.user-link').attr('class').split(' user-link user-')[1].split(' group-')[0] , $(this).parents('div.mini-profile').find('a.user-link').text(), 'took');}); }, 1000); }) Thank you so much for your help! I will attempt to get the admins to try this fix. Thanks again, Kev!
|
|
inherit
170346
0
Mar 1, 2016 12:53:37 GMT -8
Shorty
Yeah, I'm that cool. Lol! No I'm not.
3,018
August 2011
shortyverrett94
|
Post by Shorty on Apr 12, 2017 18:01:59 GMT -8
So I just tested this on my test forum and it works still. It looks like the forum is using an older version of the plugin. The one from the library has this fixed.
|
|
inherit
200468
0
Jun 9, 2017 13:44:04 GMT -8
naxself
6
September 2013
naxself
|
Post by naxself on Jun 9, 2017 13:44:58 GMT -8
I have a small problem.
The karma numbers aren't displaying properly in the mini-profile or the regular profile (i.e., the "Karma" tab in the user profile). The numbers there are gibberish, like "NaN" or "null" or "user-24". I'm not sure why that's happening - esp. since it appears as though giving and receiving karma still works. How would I edit the displays? On a hunch, I tried the solution mentioned above re: the header/footer, but it didn't work.
I've tried re-loading v1.5.3 (I was using that version before), and it hasn't made a difference. I'm also not sure how to open/edit .pbp files.
Any help is appreciated.
|
|
inherit
236377
0
Aug 14, 2019 6:17:01 GMT -8
remnantique
Come join our animal crossing forum!
316
August 2016
remnantique
|
Post by remnantique on Jul 16, 2017 7:04:14 GMT -8
This works perfect in my mini profile, i used the code you mentioned in the about tab. But it doesn't show in the profile? I have the wifi rating tab but nothing shows. It's something to do with my custom theme because it shows on the default theme. Any place I can write some code to manually make it appear? The wifi rating tab is there but it doesn't show anything on it.
|
|
inherit
122767
0
Aug 4, 2024 5:54:29 GMT -8
nero1
taylor.boards.net
217
April 2008
nero1
|
Post by nero1 on Nov 27, 2017 18:52:47 GMT -8
Hi Shorty The karma system doesn't allow us on taylor.boards.net to give 'heart' anymore... it all of a sudden just gives an alert 'you do not have permission to give heart'. Did anything change or did I just mess up somewhere? Administrators can still edit the karma, but can't give karma by clicking on the picture (heart).
|
|
inherit
220202
0
Jul 20, 2020 9:08:52 GMT -8
knightmare414
31
April 2015
knightmare414
|
Post by knightmare414 on Nov 28, 2017 5:43:36 GMT -8
Same thing on my board. All the karma went to 0 and we get a message stating that we do not have permission.
|
|
inherit
219206
0
Jul 18, 2018 20:14:03 GMT -8
The Referee
204
February 2015
theperilousdreamer
|
Post by The Referee on Nov 28, 2017 9:24:51 GMT -8
I have the exact same problem on my forum at ruinsofmurkhill.proboards.com/. I can see my karma but everyone else is at zero and it says I don't have permission to give Karma.
|
|