The eAuction Support Forums
https://www.everyscript.de/cgi-bin/yabb/YaBB.pl eAuction 1.6.1.x >> Start Up and more >> Feedback Rating and Icons https://www.everyscript.de/cgi-bin/yabb/YaBB.pl?num=1093279584 Message started by www.blitzday.com on 08/23/04 at 18:46:24 |
Title: Feedback Rating and Icons Post by www.blitzday.com on 08/23/04 at 18:46:24 Hello, Another user had the idea of the stars ;D but: i would like to have the following, ALias Name QUantity of feedback and then a picture so 3 items next to eachother like ebay....... how can we do this, at the moment i have a nice star but no details of quantity of feedback. GURU - Please help.. www.blitzday.com |
Title: Re: Feedback Rating and Icons Post by Forum Admin on 08/23/04 at 18:55:46 Yep - you can hire me :) |
Title: Re: Feedback Rating and Icons Post by www.blitzday.com on 08/23/04 at 19:03:46 hiring? so what about the free help you gave everybody :-) well i can promise you if this gets of the ground i give you 2.5 procent of all my earnings in the next 12 months whci i make of this site and script. but then you have to help me totally customising the site to what i want it to be... of just tell me how to do it and if it works i might consider sending you beer money.. :-* |
Title: Re: Feedback Rating and Icons Post by Forum Admin on 08/23/04 at 19:24:15 www.blitzday.com wrote:
Free help is one thing, changing the code for the purpose of only one user is another thing. And by the way ... Do you know this text? Quote:
|
Title: Re: Feedback Rating and Icons Post by www.blitzday.com on 08/23/04 at 21:05:18 I know the text, i give you credits! I changed a few bits and bobs myself as well from my other test site ezauction.pl see: http://www.blitzday.com/cgi-bin/auction.cgi i just want in the end to provide a free service to enthousiastic auctioners like me, read FREE. But if you want me to change the text just tell me! but what do you think about the site... would you like to help me to try to get as many users as possible in a as quick amount of time possible. I see a lot of your scripts here and there all dead or not having a real marketing plan behind it. It would be nice that all the work you did would finally be used by 1000nds or more people right? Let me know.. I am not going to make money out of this!!! that is not my mission.. please help me? |
Title: Re: Feedback Rating and Icons Post by Dieter Werner on 08/23/04 at 21:44:36 OK - I like coding and I did this script just for my own fun. Everybody can use the script - free of any charge. Everybody can use this forum and can get help - free of any charge. What can I do more? Can you imagine how much time I spended in order to code this thing? Can you imagine how much time I have to spend in order to maintain the forum? OK - it was my decision to do what I did (and I'm having a lot of fun with it) but I'm not able (and not willing) to start a promotion for each site of everyone who has installed my script. It's up to each single user to promote his auction by advertising (or whatever). Sorry - but these are the facts :) |
Title: Re: Feedback Rating and Icons Post by www.blitzday.com on 08/23/04 at 22:25:15 I know how much time it must have taken an dwe all edeeply appreciate the work you have done and how you have helped so many people! and still you are going for more and updated versions! i really would like to thank you for all of that and of course you do not have to commit to anything. but OK this stuburn dutch guy will ask you only for a hint in how to get this done when ever you feel challenged or when ever you have the time to do it! i am not in a hurry! :-) I really appreciate your work. sorry to have taken a bit of your time. if i can do anything for you one day let me know. i work for oracle, you never know.... |
Title: Re: Feedback Rating and Icons Post by www.blitzday.com on 08/23/04 at 23:45:45 Ok, a few hours later i fixed it myself, yahoo, i am starting to get this code.... YEAH RIGHT.. ahh but i did it with some fancy html work... let me know if you are interested in the fix, i am there for you! :-) |
Title: Re: Feedback Rating and Icons Post by Dieter Werner on 08/24/04 at 00:04:33 It's good to know that the forum is able to provide help to the self-help :) It would be nice if you could post your soulution. |
Title: Re: Feedback Rating and Icons Post by www.blitzday.com on 08/24/04 at 00:31:37 Ok, the solution: I am not a programmer and there might be better options, but this works for me at this stage. What do you get: In the display where you see the feedback number you get to see the name of the person (links directly to email address, have to figure out how to hide this or how to access it after you fill in your password and login name, but that is another story) followed by the number of feedback points (with no ugly line under this number) followed by a star image or what ever you prefer. What to do: Find: #-############################################# # Sub: Display Item # This displays an item, its description, and its bids. # Contributed by: Dieter Werner #-############################################# Find in this Sub: -e "$config{'rating_dir'}/$alias.dat" ? ($rated = (count_rating($alias))[4]) : ($rated = 0); Enter the following right under this piece of code: my %fb_icon = ( '1star' => [1, 15], '2star' => [15, 50], '3star' => [51, 100], '4star' => [101, 250], '5star' => [251, 5000], ); foreach (keys %fb_icon) { ($rated > $fb_icon{$_}->[0] and $rated < $fb_icon{$_}->[1]) ? do { $rated = qq|<font size="2"><b><span style="text-decoration: none">$rated   </b></font></span><img src="$config{'icon_url'}/$_.gif" border='no'>|; last; That should be it, now you can see an Ebay style feedback numer and image. Use for the 1star, 2 star, 3 star etc. your own drawn pictures and use the name you gave them. Save them with extension in the img directory of your auction setup and name them .gif!! Now change the 1 star etc. in your pictures name without the extention. For more help, mail me. auction@blitzday.com, I am open for improvements on this coding. |
Title: Re: Feedback Rating and Icons Post by Dieter Werner on 08/24/04 at 14:01:38 www.blitzday.com wrote:
Small correction: Code:
Scroll down to the line: Code:
and replace it with this line: Code:
Edit: this forum software is driving me crazy ... this one my $rating_pic = qq| |; must be my $rating_pic = qq|  |; and this one $rat ed must be $rated |
Title: Re: Feedback Rating and Icons Post by www.blitzday.com on 08/24/04 at 15:32:17 thank you, looks very good, but now the number has the nasty line under it which i hate. So just use the text decoration : none command in html to get rid of that. But thank you again for keeping the format right.. |
Title: Re: Feedback Rating and Icons Post by Dieter Werner on 08/24/04 at 20:35:08 www.blitzday.com wrote:
Don't do that (because it has been done with the css-tags already) Simply delete the HTML-tags <u></u> |
The eAuction Support Forums » Powered by YaBB 2.2! YaBB © 2000-2007. All Rights Reserved. |