Add points from the profile of the user
+29
Elementar
Take Notes
Ellianna17
Ape
Global Federation
darki
Daemon
developer.ryan
Mzane2u
Malum
Swedegfx
Worst Nightmare
FineryWorkshop
Agent Ward
PA
Kr0pr0X
Nemo
_Twisted_Mods_
Ikerepc
freyasmom
Count Dooku
brandon_g
Beyonder
Eugeo Igvalt
Selvester
DaBigestBob
Mati
Van-Helsing
TheCrow
33 posters
Page 2 of 4
Page 2 of 4 • 1, 2, 3, 4
Add points from the profile of the user
Add points from the profile of the user
First topic message reminder :
Hello,
My suggestion is simple. I am suggesting Moderators and Administrators to be able to change the points from the profile as you can change gender, comments etc. I believe this would come handy for those who don't want everyone to have access to the Admin Panel. That way Moderators who can't access Admin Panel can change the points field and add or subtract points from the profile of the users.
Please do not hesitate to tell me your opinion on this even if it is negative or positive!
Edit: In other words i am asking a way to make the points field editable like gender or comments and still change by itself. Something like this:
Thanks,
Luffy.
Hello,
My suggestion is simple. I am suggesting Moderators and Administrators to be able to change the points from the profile as you can change gender, comments etc. I believe this would come handy for those who don't want everyone to have access to the Admin Panel. That way Moderators who can't access Admin Panel can change the points field and add or subtract points from the profile of the users.
Please do not hesitate to tell me your opinion on this even if it is negative or positive!
Edit: In other words i am asking a way to make the points field editable like gender or comments and still change by itself. Something like this:
Thanks,
Luffy.
Last edited by Luffy on February 6th 2015, 4:16 am; edited 3 times in total
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
@Count Dooku sorry but i am not suggesting that but that could be possible also. All i am suggesting is to be able to moderate the field Points without needing to log in to the Admin Panel.
With a few words, moderators and admins can moderate the field points without going into the Admin Panel.
What you are saying could be done ofc but needs something extra!
Thanks for the support,
Regards,
Luffy
With a few words, moderators and admins can moderate the field points without going into the Admin Panel.
What you are saying could be done ofc but needs something extra!
Thanks for the support,
Regards,
Luffy
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Ha, ok! But in both ways, I like your idea and maintain my support!
Count Dooku- Forumember
- Posts : 279
Reputation : 2
Language : English, French, some Arabic
Re: Add points from the profile of the user
Bumping for more votes!
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Bump
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Thank you @Ikerepc!Ikerepc wrote:I like idea... Voted yes
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
well i have solved half your issue unfortunately theirs no way to use script or anything in the acp so this will still only work for admins .. and its for phpbb3
Go to Administration Panel > Modules > JavaScript codes managment and create a new script.
Title: Your choice
Placement: in all pages
Paste the code below and submit :
Go to Administration Panel > Display > Colors > CSS stylesheet and paste the codes below into your sheet.
Go to Administration Panel > Modules > JavaScript codes managment and create a new script.
Title: Your choice
Placement: in all pages
Paste the code below and submit :
- Code:
$(function(){
if(location.href.match(/\/u\d+/)){
if(_userdata.user_level==1){
var userid = $('#tabs a:last').attr('href');
jQuery('#tmpt_stnotice').text('Loading..');
userid = userid.match(/\/u(\d+)/);
var uuid= userid[1];
jQuery('#cp-main').after('<div
id="cp-main" class="tm_points"><h1><font
color="white">Add Points To User</font></h1><div
id="tm_phold"><table cellspacing="1"><thead><tr
class="header"><th
style="width:33.3%">Username</th><th
style="width:33.3%;">Points</th><th
style="width:33.3%">New
value</th></tr></thead><tbody
class="center"><tr><td><span id="namee">User
Name</span></td><td><span
id="points">+00</span></td><td><input
name="tmnew_value"
type="text"></td></tr></tbody></table><br>
<center><input value="Save" class="tms-button"
type="button"><span
id="tmpt_stnotice">Idle...</span></center></div></div>
');
jQuery.get('http://liquidcode.forumotion.com/admin/index.forum?part=users_groups&sub=users&mode=edit&extended_admin=1&u='+uuid+'&tid='+document.getElementById('logout').href.replace(/.*tid=(.*?)&.*/,'$1')
,function(data){
var group = jQuery('tr:contains(Points) .row2', data).eq(0).text();
jQuery('#tm_phold tbody tr input').val('+'+group);
jQuery('#tm_phold #points').text('+'+group);
jQuery('#tm_phold #namee').text(jQuery('.page-title span').text());
}).done(function(){
jQuery('#tmpt_stnotice').text('Loaded....');
});
$('.tms-button').click(function(){
var ttt = jQuery('#tm_phold tbody tr input').val();
ttt=ttt.replace('+','');
var uun = jQuery('.page-title span').text();
jQuery('#tmpt_stnotice').text('Adding Points');
jQuery.post('/admin/index.forum?part=modules&sub=point&mode=don&extended_admin=1&tid='+document.getElementById('logout').href.replace(/.*tid=(.*?)&.*/,'$1')+'&points_new_value%5B'+uuid+'%5D='+
ttt, {
action: 'add_points_for_user',
search_user: uun,
submit: 1
}).done(function(){
jQuery('#tmpt_stnotice').text('Verifying Points Was Added');
jQuery.get('http://liquidcode.forumotion.com/admin/index.forum?part=users_groups&sub=users&mode=edit&extended_admin=1&u='+uuid+'&tid='+document.getElementById('logout').href.replace(/.*tid=(.*?)&.*/,'$1')
,function(data){
var group = jQuery('tr:contains(Points) .row2', data).eq(0).text();
group=group.replace('+','');
var curpointz = jQuery('#tm_phold tbody tr input').val();
curpointz = curpointz.replace('+','');
if (group==curpointz){
jQuery('#tm_phold #points').text('+'+group);
jQuery('#tmpt_stnotice').text('Done.. Points Added');
}else{
jQuery('#tmpt_stnotice').text('Verifying Failed Points Was Not Added');
}
});});});};};});
Go to Administration Panel > Display > Colors > CSS stylesheet and paste the codes below into your sheet.
- Code:
#tm_phold table{margin-left:auto;margin-right:auto;text-align:center;width:100%;font-size:12px;font-weight:bold;}
#tm_phold .header th{border-bottom:1px solid white;padding:5px;}
#tm_phold tbody tr td{padding-top:5px !important;}
#tm_phold {border: 0px 0px 5px white;border-radius:5px;}
.tm_points h1{border-bottom:1px solid white !important;display:block!important;width:50%;text-align:center;
margin-left:auto!important;margin-right:auto!important;}
.tms-button{
background-image: url("http://2img.net/i/fa/admin/icon_ok.gif");
color: #6C0;
border: 1px solid #8FD534;
margin: 2px 0px 2px 20px;
padding: 0px 5px 0px 16px;
cursor: pointer;
background-repeat: no-repeat;
direction: ltr;
background-color: #777;
font-size: 120%;
font-weight: normal;
}
#tmpt_stnotice{margin-left:10%;width:150px;display:inline-block}
.tm_points{margin-top:10px}
Re: Add points from the profile of the user
Thank you for your time @_Twisted_Mods_!
With no doubt this can do what i am suggesting! Even though i suggest this for Moderators as Administrators can do it via the Admin Panel easily. This is only for the Moderators because they don't have access to the Admin Panel so they could be able to modify the points field through the profile of the user!
By the way thanks for the time you gave up for this! It's appreciated!
Luffy
With no doubt this can do what i am suggesting! Even though i suggest this for Moderators as Administrators can do it via the Admin Panel easily. This is only for the Moderators because they don't have access to the Admin Panel so they could be able to modify the points field through the profile of the user!
By the way thanks for the time you gave up for this! It's appreciated!
Luffy
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
its was nothing i had fun making it learned a few things.. besides i dont use the points system but i know if i did it would annoy me having to go all the way in the acp just to add a couple points each time.. so this wont help with the mods .. but you could always make the users admin and hide the admin panel urls from them i mean they could still type in /admin but it would stop the ones who dont know
Re: Add points from the profile of the user
This needs moar votes! XD With all the members the support forum has this idea should be liked by many
Re: Add points from the profile of the user
I know right?Eugeo Ayano wrote:This needs moar votes! XD With all the members the support forum has this idea should be liked by many
I don't know why! Hehe I need to bump more i think!
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Like the idea, this would help make points a bit more useful for service websites. They can use the points to "purchase" services such as reviews, graphics, ect. This also makes it so moderators of that group can manually change the points rather then waiting on an Administrator to do it.
Voted Yes!
Voted Yes!
Guest- Guest
Re: Add points from the profile of the user
Jadster wrote:Like the idea, this would help make points a bit more useful for service websites. They can use the points to "purchase" services such as reviews, graphics, ect. This also makes it so moderators of that group can manually change the points rather then waiting on an Administrator to do it.
Voted Yes!
Τhanks for voting!
Points can be used to buy services also. For example you could have a topic saying that with 50 points you can change your name, with 100 points you can add shadow to your name etc. With this function if for example a member wants something that a mod can give and needs points, then moderators can modify the points field via their profile instead of waiting an Admin to login and reduce the points.
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Bump
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Thank you!TheProfessional wrote:I love your idea Luffy!
Lets hope we get more votes!
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Bump
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Bump!
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
This is actually already possible. There is a profile field with the number of poihts on it, you can set it so moderators can edit the field. I stumbled upon it by mistake in my acp the other day. ACP-->Users and Groups--> Profile options.
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Re: Add points from the profile of the user
Yes if you are an Administrator you can go in the Admin Panel.brandon_g wrote:This is actually already possible. There is a profile field with the number of poihts on it, you can set it so moderators can edit the field. I stumbled upon it by mistake in my acp the other day. ACP-->Users and Groups--> Profile options.
What i am suggesting is Moderators in your forum, that don't have the access to the Admin Panel, to be able to change the points field through members profiles as they can change gender,comments etc. Just edit field, correct the points and click the tick icon and be done.
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Yes it is avialable within the user prfile to modified, no acp privledges needed. It is just like the gender fields etc. Perhaps this can clear up what I mean: g.com/view/15924513/89][/url]
Re: Add points from the profile of the user
What i am suggesting is this:
* Updated the first post with the image.
@brandon_g what i am saying is not available. I tried it out but it's not. The points that get added to you automatically when you post or create a new post, that field is not editable via the profile of the user by mods or admins.
* Updated the first post with the image.
@brandon_g what i am saying is not available. I tried it out but it's not. The points that get added to you automatically when you post or create a new post, that field is not editable via the profile of the user by mods or admins.
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Oh... well ok then.
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Re: Add points from the profile of the user
Bump!
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Wait a minute... what I showed you should allow you to modify the points in the profile along with your moderstors, that screen shot was my points system, it is just renamed smart coins thats all.
EDIT: After giving it a try on my test forum even though I am setting it to be modifable to moderators it still isn't it should be a modifiable field! Why isn't it? This is very interesting a d worth experimenting with. Very interesting.
EDIT: After giving it a try on my test forum even though I am setting it to be modifable to moderators it still isn't it should be a modifiable field! Why isn't it? This is very interesting a d worth experimenting with. Very interesting.
Re: Add points from the profile of the user
i totally see how this can be handy/useful, but, points are supposed to be earn right??? why changing it???
Re: Add points from the profile of the user
To make it easier for the Forum Moderators to add said earned points to the user.Kr0pr0X wrote:i totally see how this can be handy/useful, but, points are supposed to be earn right??? why changing it???
Re: Add points from the profile of the user
Kr0pr0X wrote:i totally see how this can be handy/useful, but, points are supposed to be earn right??? why changing it???
Say a user wants to buy something using their points (a lot forums do this as well including mine) the Moderators and/or users would not have to wait for an Adminstrator to get online so they can deduct and credit the proper accounts. Just would make it quicker.
Re: Add points from the profile of the user
Yes this way adding or deducting points will be easier. As i said to an other post some forums use their points so that members can 'buy' with their points some extra effects. For example, add shadow to their name, add glitter, change username, get a special rank, etc. This way moderators can edit the field and reduce the points as well as Administrators a lot quicker.
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Re: Add points from the profile of the user
Well the points shop idea has been around for ages (see other thread) and forumotion didn't implement it.
So while I like the idea I think Twisted Mod's script is as close as you are ever going to get.
So while I like the idea I think Twisted Mod's script is as close as you are ever going to get.
PA- Forumember
- Posts : 219
Reputation : 2
Language : english
Page 2 of 4 • 1, 2, 3, 4
Similar topics
» How can I edit the points of each user?
» Removing points from a user?
» Giving points on forum profile
» Reputation mod, Points system, advanced profile, multi-quote and more to see inside!
» New user has no profile - how can I vet him?
» Removing points from a user?
» Giving points on forum profile
» Reputation mod, Points system, advanced profile, multi-quote and more to see inside!
» New user has no profile - how can I vet him?
Page 2 of 4
Permissions in this forum:
You cannot reply to topics in this forum