Hi An,
You can find my answer with your requestion below
1) You can give me the screenshot of what are you trying to do, it will help to understand your request.
2) This is custom work and you can find them from templates/uber/html/com_content/article/product.php file and remove this code
Price
Rating
item->rating_sum) && $this->item->rating_count > 0) {
$this->item->rating = round($this->item->rating_sum / $this->item->rating_count, 1);
$this->item->rating_percentage = $this->item->rating_sum / $this->item->rating_count * 20;
} else {
if (!isset($this->item->rating)) $this->item->rating = 0;
if (!isset($this->item->rating_count)) $this->item->rating_count = 0;
$this->item->rating_percentage = $this->item->rating * 20;
}
$uri = JUri::getInstance();
?>
1
2
3
4
5
(item->rating ?> / item->rating_count; ?> votes)
!function($){
$('.rating-form').each(function(){
var form = this;
$(this).find('.rating-list li a').click(function(event){
event.preventDefault();
form.user_rating.value = this.innerHTML;
form.submit();
});
});
}(window.jQuery);
</script>
</dd>
</dl>
Regards