How to make a thanks system like here?
+4
Jaytective9
SLGray
AuQaClan
Mariofan13
8 posters
Page 1 of 2
Page 1 of 2 • 1, 2
How to make a thanks system like here?
Hello,
How can I make a thanks "system" like here in the support forum? Is this possible with phpBB2?
How can I make a thanks "system" like here in the support forum? Is this possible with phpBB2?
Re: How to make a thanks system like here?
Yes, I have a button.
But I want, that all users can see, that the topic starter thanked - like here in the support forum:
But I want, that all users can see, that the topic starter thanked - like here in the support forum:
Re: How to make a thanks system like here?
- Code:
var CopyrightNotice = 'New thank-you system for forumotion IPB2/Invision boards. Copyright © 2012 by Dion Designs. All Rights Reserved. Use and/or modification of this script is allowed, provided this entire copyright notice remains in the original or modified script. Distribution is not allowed without written consent from Dion Designs.';
$(function() {
$('.post-footer[style="background-color:#;"]').prepend('<div style="padding-top:2px;height:32px;line-height:36px;color:#740;font-size:16px;font-weight:bold;text-align:center"><img style="vertical-align:top" src="http://cdn.iconfinder.net/data/icons/Basic_set2_Png/32/star1.png" /> The topic starter thanks you, '+$('.post[style="background-color:#;"] .postprofile dt').text()+'! <img style="vertical-align:top" src="http://cdn.iconfinder.net/data/icons/Basic_set2_Png/32/star1.png" /></div>');
});
Here is the script for phpBB3 boards:
- Code:
var CopyrightNotice = 'New thank-you system for forumotion phpBB3 boards. Copyright © 2012 by Dion Designs. All Rights Reserved. Use and/or modification of this script is allowed, provided this entire copyright notice remains in the original or modified script. Distribution is not allowed without written consent from Dion Designs.';
$(function() {
$('.post[style="background-color:#;"] div.clear').after('<div style="height:32px;line-height:36px;color:#740;font-size:16px;font-weight:bold;text-align:center"><hr /><img style="vertical-align:top" src="http://cdn.iconfinder.net/data/icons/Basic_set2_Png/32/star1.png" /> The topic starter thanks you, '+$('.post[style="background-color:#;"] .postprofile dt').text()+'! <img style="vertical-align:top" src="http://cdn.iconfinder.net/data/icons/Basic_set2_Png/32/star1.png" /></div>');
});
And here is the script for PunBB boards:
- Code:
var CopyrightNotice = 'New thank-you system for forumotion PunBB boards. Copyright © 2012 by Dion Designs. All Rights Reserved. Use and/or modification of this script is allowed, provided this entire copyright notice remains in the original or modified script. Distribution is not allowed without written consent from Dion Designs.';
$(function() {
$('.post[style="background-color:#;"] .post-options').prepend('<div style="height:32px;line-height:36px;color:#740;font-size:16px;font-weight:bold;text-align:center"><img style="vertical-align:top" src="http://cdn.iconfinder.net/data/icons/Basic_set2_Png/32/star1.png" /> The topic starter thanks you, '+$('.post[style="background-color:#;"] .user-ident').text()+'! <img style="vertical-align:top" src="http://cdn.iconfinder.net/data/icons/Basic_set2_Png/32/star1.png" /></div>');
});
Hope this helped
Last edited by AuQaClan on Sun 23 Dec 2012 - 13:23; edited 1 time in total
Re: How to make a thanks system like here?
No, because in my profile you can see, that my forum is phpBB2, and not phpBB3/Invision/punBB and a style "IPB2" doesn't exist
Re: How to make a thanks system like here?
hmm iv looked around and i think it might just be a Signature.
If you would like i could make you one?
If you would like i could make you one?
Re: How to make a thanks system like here?
Signature?
But I onyl want the thanks system like here. And so I need the code, which you posted, for phpBB2
But I onyl want the thanks system like here. And so I need the code, which you posted, for phpBB2
Re: How to make a thanks system like here?
The topic starter thanks you!
Its not the same but..
Its not the same but..
- Code:
[img]http://icons.iconarchive.com/icons/iconshock/christmas/48/star-icon.png[/img][color=olive][size=24]The topic starter thanks you![/size][/color][img]http://icons.iconarchive.com/icons/iconshock/christmas/48/star-icon.png[/img]
Re: How to make a thanks system like here?
- Code:
var CopyrightNotice = 'New thank-you system for forumotion PunBB boards. Copyright © 2012 by Dion Designs. All Rights Reserved. Use and/or modification of this script is allowed, provided this entire copyright notice remains in the original or modified script. Distribution is not allowed without written consent from Dion Designs.';
$(function() {
$('.post[style="background-color:#;"] .post-options').prepend('<div style="height:32px;line-height:36px;color:#740;font-size:16px;font-weight:bold;text-align:center"><img style="vertical-align:top" src="http://cdn.iconfinder.net/data/icons/Basic_set2_Png/32/star1.png" /> The topic starter thanks you, '+$('.post[style="background-color:#;"] .user-ident').text()+'! <img style="vertical-align:top" src="http://cdn.iconfinder.net/data/icons/Basic_set2_Png/32/star1.png" /></div>');
});
Re: How to make a thanks system like here?
I think, you didn't understand me.
Yuo posted three javascripts, for phpBB3, IPB and punBB. But I need the script for phpBB2! And not the BBCode for the text and images! I wan to use my own images and text! My forum is german, so I want to use a german text
Yuo posted three javascripts, for phpBB3, IPB and punBB. But I need the script for phpBB2! And not the BBCode for the text and images! I wan to use my own images and text! My forum is german, so I want to use a german text
Re: How to make a thanks system like here?
oh sorry my bad so you want to know how to set up the thanked system?
Re: How to make a thanks system like here?
AuQaClan wrote:il re check my friend
AuQaClan wrote:hmm iv looked around and i think it might just be a Signature.
If you would like i could make you one?
AuQaClan wrote:The topic starter thanks you!
Its not the same but..
- Code:
[img]http://icons.iconarchive.com/icons/iconshock/christmas/48/star-icon.png[/img][color=olive][size=24]The topic starter thanks you![/size][/color][img]http://icons.iconarchive.com/icons/iconshock/christmas/48/star-icon.png[/img]
AuQaClan wrote:
- Code:
var CopyrightNotice = 'New thank-you system for forumotion PunBB boards. Copyright 2012 by Dion Designs. All Rights Reserved. Use and/or modification of this script is allowed, provided this entire copyright notice remains in the original or modified script. Distribution is not allowed without written consent from Dion Designs.';
$(function() {
$('.post[style="background-color:#;"] .post-options').prepend('<div style="height:32px;line-height:36px;color:#740;font-size:16px;font-weight:bold;text-align:center"><img style="vertical-align:top" src="http://cdn.iconfinder.net/data/icons/Basic_set2_Png/32/star1.png" /> The topic starter thanks you, '+$('.post[style="background-color:#;"] .user-ident').text()+'! <img style="vertical-align:top" src="http://cdn.iconfinder.net/data/icons/Basic_set2_Png/32/star1.png" /></div>');
});
Please don't double/triple post. Your post need to be separated by 24 hours before bumping, replying or adding more information. Please use the edit button instead! [Second Reminder] |
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: How to make a thanks system like here?
Excuse me, do you mean Like button or Honor button like the +0 found in every post?
Jaytective9- Forumember
- Posts : 188
Reputation : 9
Language : English
Location : Earth
Re: How to make a thanks system like here?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: How to make a thanks system like here?
This doesn't work.
Here the javascript:
Here the javascript:
- Code:
$(function () {
var x = $('.post .row2:nth(1)').get();
for (i = 0; i < x.length; i++) {
if (x[i].style.backgroundColor == "rgb(221, 235, 202)") {
x[i].style.backgroundColor = '"rgb(0, 149, 255)"';
x[i].parentNode.firstChild.style.backgroundColor = '';
x[i].parentNode.nextSibling.getElementsByTagName('td')[0].style.backgroundColor = '';
x[i].parentNode.nextSibling.getElementsByTagName('td')[1].style.backgroundColor = '';
var stars = document.createElement('div');
stars.setAttribute('style', 'text-align: center;');
stars.innerHTML = '<hr><div style="padding-top:2px;height:32px;line-height:36px;text-shadow:#FFFFFF 1px 1px 8px;font-variant:small-caps;color:#021678;font-size:16px;font-weight:bold;text-align:center"><img style="vertical-align:top" src="http://www.abload.de/img/iconnewi7c33.png"> Der Themenstarter dankt dir! <img style="vertical-align:top" src="http://www.abload.de/img/iconnotew2ei88.png"></div>';
x[i].appendChild(stars);
}
}
});
Re: How to make a thanks system like here?
Did you read the very important information at the bottom of the tutorial on fmquery?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: How to make a thanks system like here?
It still doesn't work
- Code:
$(function () {
var x = $('.post .row2:nth(1)').get();
for (i = 0; i < x.length; i++) {
if (x[i].style.backgroundColor == "rgb(0, 149, 255)") {
x[i].style.backgroundColor = ' ' ;
x[i].parentNode.firstChild.style.backgroundColor = '';
x[i].parentNode.nextSibling.getElementsByTagName('td')[0].style.backgroundColor = '';
x[i].parentNode.nextSibling.getElementsByTagName('td')[1].style.backgroundColor = '';
var stars = document.createElement('div');
stars.setAttribute('style', 'text-align: center;');
stars.innerHTML = '<hr><div style="padding-top:2px;height:32px;line-height:36px;text-shadow:#FFFFFF 1px 1px 8px;font-variant:small-caps;color:#021678;font-size:16px;font-weight:bold;text-align:center"><img style="vertical-align:top" src="http://www.abload.de/img/iconnewi7c33.png"> Der Themenstarter dankt dir! <img style="vertical-align:top" src="http://www.abload.de/img/iconnotew2ei88.png"></div>';
x[i].appendChild(stars);
}
}
});
Re: How to make a thanks system like here?
Check your browser's error console to see if there is even errors on your forum.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: How to make a thanks system like here?
Where is the error console in firefox?
Last edited by Mariofan13 on Thu 27 Dec 2012 - 21:18; edited 1 time in total
Re: How to make a thanks system like here?
Mariofan13 wrote:Where is the error conlone in firefox?
Tools>Web developer>Error console
Re: How to make a thanks system like here?
Thanks
I deleted the viewtopic_body, but it still doesn't work
I deleted the viewtopic_body, but it still doesn't work
Last edited by Mariofan13 on Fri 28 Dec 2012 - 23:36; edited 1 time in total
Re: How to make a thanks system like here?
Topic removed from Garbage as requested by topic starter.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: How to make a thanks system like here?
Can anyone help me? I inserted the JS, but it still doesn't work! Where's the problem?Mariofan13 wrote:Thanks
I deleted the viewtopic_body, but it still doesn't work
Page 1 of 2 • 1, 2
Similar topics
» How do I make sure people cannot make multiple accounts/someone has more than one IP address
» Make the mentioning system easier to use
» Make the mentioning system easier to use
» How do I make an automated quiz system
» Is there a way I can make it so only I, an admin, can make threads in a specific forum?
» Make the mentioning system easier to use
» Make the mentioning system easier to use
» How do I make an automated quiz system
» Is there a way I can make it so only I, an admin, can make threads in a specific forum?
Page 1 of 2
Permissions in this forum:
You cannot reply to topics in this forum