Quote:
Originally Posted by tomshawk
Forgive my ignorance, again
This hidden form field
Is this done in the Custom form field?
If it is, I do not see a hidden option
and I assume the title does not matter.
What will this do to the Thread creating title.
right now, it says 5 out of 5 rating for (Product title)
I'd rather it just say Rev: (Product Title)
|
No, you would be adding it to the HTML code (the field name is "rating").
Remove:
Code:
<div class="blockrow">
<label for="rating">{vb:phrase prodforums_writeitrating} <span style="color:red;">*</span></label>
<select name="rating">
<option value="">--- {vb:phrase prodforums_select} ---</option>
<option value="1">1 {vb:phrase prodforums_star}</option>
<option value="2">2 {vb:phrase prodforums_stars}</option>
<option value="3">3 {vb:phrase prodforums_stars}</option>
<option value="4">4 {vb:phrase prodforums_stars}</option>
<option value="5">5 {vb:phrase prodforums_stars}</option>
</select>
</div>
Add
Code:
<input type="hidden" name="rating" value="1" />
http://www.w3schools.com/tags/att_input_type.asp
The thread title is set from the phrase prodforums_reviewtitle. {2} is the title, the rest can be removed.