Index: /model/wpsg_product.class.php
===================================================================
--- /model/wpsg_product.class.php	(revision 6763)
+++ /model/wpsg_product.class.php	(revision 6764)
@@ -484,4 +484,22 @@
 		} // public function hasLimitedShipping()
 
+        public function getRatingCount()
+        {
+
+            if (!isset($this->loadedData['rating'])) return 0;
+            else if ($this->loadedData['rating'] === '-1')
+            {
+
+                return sizeof(\get_comments(array(
+                    'post_id' => $this->GetPostID(),
+                    'type' => 'wpsg_product_comment',
+                    'status' => 'approve'
+                )));
+
+            }
+            else return 1;
+
+        }
+        
 		public function getRating()
 		{
