|
Drop-down review rating systems
|
19th January 2010 07:17 AM
|
|
|
|
Drop-down review rating systems
To comply with the new laws affecting reviewers who receive products from companies, I would like to add a drop-down rating field. Users submitting reviews will be asked "How did you receive this item?" with answers like "Purchased," "Demo," and "Received from Company" to choose from.
When I set this up as a rating field called "How did you receive this item?" and assign it to a drop-down rating system called "How Obtained," it works on the individual review view, but it also shows up in the rating scores box for an item's overall score, with 0%.
Can you add a drop-down style box that acts like a free text field system?
|
|
|
Issue Details
|
|
Category Public GUI
Status Suggested
Priority 3
Suggested Version Unknown
Implemented Version (none)
Votes for this feature
1
Votes against this feature
0
Assigned Users
(none)
Tags
(none)
|
|
20th January 2010 10:48 AM
|
 |
Censura Developer
|
|
|
|
This should work:
1) create a rating system: select box, maximum: 0 (actually enter 0, not blank)
2) create a rating field "how obtained" using this system
3) add values - leaving the numeric equivalent box blank
4) assign to category
When you select from the box it should add the field to the ratings box on the side on the product page but with only a text value, no "0%" - works on my installation.
|
25th January 2010 05:30 PM
|
|
|
|
Point being I don't want it to show up on the product page, as it doesn't belong there.
|
26th January 2010 03:50 PM
|
 |
Censura Developer
|
|
|
|
Did my instructions work for you?
|
26th January 2010 11:18 PM
|
|
|
|
Yes, the 0% shows up because of custom coding in my theme to show the percentage, but my whole point is that I don't want it to show up on the product page at all, it's a review entry, only applicable to individual reviews. We have the option to hide product attributes from the display, maybe add a similar option for review fields?
|
27th January 2010 09:31 AM
|
 |
Censura Developer
|
|
|
Hmm I see... I think we have hidden review fields doen on the future features list. 2.3 is pretty much finalised now though. For now as a bit of a hack you can stop it appearing by editing includes/reviewDetail.tpl (where 10 is the field ID of the field you don't want to show):
Code:
{foreach from=$review->shortRatings item=rating}
{if $rating->fieldid != 10}
<div class="rate_details">
<dl>
<dt>{$rating->field}</dt>
{if !is_null($rating->percentage)}
<dd>{$rating->value->string} {graphical_rating rating=$rating->percentage}</dd>
{else}
<dd>{$rating->value}</dd>
{/if}
</dl>
</div>
{/if}
{/foreach}
|
All times are GMT. The time now is 03:25 AM.