Hi there,
I am trying to get the customer ID (The customer who left the review) onto review.tpl.
Currently review.tpl pulls data including the author, date and rating from the review table (which also contains the customer ID value).
It comes from the controller product.php: $this->model_catalog_review->getReviewsByProductId(...).
getReviewsByProductId(...), currently selects all values from the review table other than customer_id ... simply adding ", r.customer_id," doesn't work for me. I just get undefined index. Can someone tell me what I'm doing wrong

Thanks!