Gossamer Forum
Home : Products : Gossamer Links : Discussions :

make rate it 1-5 intead of 1-10??

Quote Reply
make rate it 1-5 intead of 1-10??
Hello are the rate it 1-10 and rate it 1-5 under the review modifying the same rating value?

How can I be consistent and change 1-10 to 1-5? I will probably eventually make it a option buttons instead of drop down list. I also need to change the rating from number into stars... I saw a post on that but I think that's for 1-10. Help needed, thank you.
Quote Reply
Re: [flybuzz] make rate it 1-5 intead of 1-10?? In reply to
Hi. Does this help?

http://www.gossamer-threads.com/...i?post=241365#241365

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] make rate it 1-5 intead of 1-10?? In reply to
Well, I saw that post earlier already, that's for chaning the rating under the review to 1-10 but I want to change the rating for regular rate it to 1-5 a little different I think.
Quote Reply
Re: [flybuzz] make rate it 1-5 intead of 1-10?? In reply to
Hi, also I noticed the rating value is stored between 0.00 to 100.00 where should I go about changing that?
Quote Reply
Re: [flybuzz] make rate it 1-5 intead of 1-10?? In reply to
In Reply To:
Hi, also I noticed the rating value is stored between 0.00 to 100.00 where should I go about changing that?

You sure its not 0.00 to 10.00 ? Wink

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [flybuzz] make rate it 1-5 intead of 1-10?? In reply to
In Reply To:
Well, I saw that post earlier already, that's for chaning the rating under the review to 1-10 but I want to change the rating for regular rate it to 1-5 a little different I think.

Ah, in that case, its simple :)

Just make your rate box look something like;

Code:
<select name="rate">
<option value="">---</option>
<option value="2">1</option>
<option value="4">2</option>
<option value="6">3</option>
<option value="8">4</option>
<option value="10">5</option>
</select>

You may have to tweak the rate_success.html template too (as it will still show 10 as a valid rating).

Hope that helps.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!