Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
В разных шаблонах он в разных местах прописан. Например в стандартном 8 шаблоне - \templates\frontend\tmpl8 в файле product_detailed.tpl.html убираешь это:А как убрать оценку товара?
<table border="0" cellspacing="0" cellpadding="1">
<tr>
{section name=i loop=5}
<td valign="middle" align="center">
{if $smarty.section.i.index<$product_info.customers_rating}
<img src="images/tmpl8_redstar.gif">
{else}
<img src="images/tmpl8_blackstar.gif">
{/if}
</td>
{/section}
</tr><tr>
<td colspan=5 align=center>({$smarty.const.VOTES_FOR_ITEM_STRING}: {$product_info.customer_votes})</td>
</tr>
</table>
<form name=VotingForm action='index.php' method=GET>
<table border=0 cellspacing=1 cellpadding=2 bgcolor="#{$smarty.const.CONF_MIDDLE_COLOR}">
<tr>
<td align=center bgcolor="#{$smarty.const.CONF_DARK_COLOR}">{$smarty.const.VOTING_FOR_ITEM_TITLE}</td>
</tr>
<tr>
<td>
<input type="radio" name="mark" value="5" checked>{$smarty.const.MARK_EXCELLENT}<br>
<input type="radio" name="mark" value="3.8">{$smarty.const.MARK_GOOD}<br>
<input type="radio" name="mark" value="2.5">{$smarty.const.MARK_AVERAGE}<br>
<input type="radio" name="mark" value="1">{$smarty.const.MARK_POOR}<br>
<input type="radio" name="mark" value="0.1">{$smarty.const.MARK_PUNY}
</td>
</tr>
</table>
<br>
<input type="hidden" name="productID" value="{$product_info.productID}">
<input type="hidden" name="vote" value="yes">
<input type="submit" value="{$smarty.const.VOTE_BUTTON}">
</form>