I just added this conditional (colored text below) to the quote_listquote template so the "show only quotes with ____ rating" stuff doesn't show up at the top of the page if you have ratings disabled.
Code:
<if condition="$settings[1] != 0">
<div align="center" style="color:$stylevar[smallfont_fgcolor];">
$vbphrase[show_only_quotes_with]
<form name="threshold" action="quotes.php">
<select class="form" name="type" id="type" onchange="document.threshold.elements[1].name=this.value;">
<option value="total">$vbphrase[total_rating]</option>
<option value="average">$vbphrase[average]</option>
</select>
$vbphrase[greater_than_or_equal_to]
<input type="text" class="form" name="total" size="5" />
<input type="submit" class="form" value="$vbphrase[show]" />
</form>
</div><br />
</if>