Contributions

Features (Category Index)
Search: 

Complete Reviews System

This osCommerce contribution modifies the exisiting reviews system to give the website administrator more power in how reviews get displayed.

Parts of this system have been taken and modified from other review/approval contributions. Thanks goes to the contributors of those contributions for making this one possible.

What I've tried to do is take the best features of those, combined them with my own ideas, to hopefully make the most complete reviews system for osCommerce.

Changes to stock osC include:
Added 'approved' field to table reviews
Added logic to display either the 'reviews' button or the 'write review; button on product page
Removed star rating system, which is too easily 'stacked' by the customer to be useful information
Added capability to send an email to store owner when a review is added
Added a 'disclaimer' to the write review page
Removed text about 'no HTML displayed' since the HTML is stripped anyway, and most customers don't know how to write it--confusing to them
Added 'thank you' page when a review is submitted
Added ability for site administrator to write reviews: for example, when a book is reviewed in a national magazine
Added ability for site administrator to edit, approve, or reject reviews

Expand All / Collapse All

Bug fix for Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /admin/reviews.php on line xxx 5 Nov 2010

If you are getting error similar to above error, a slight modification on your /admin/reviews.php is needed to work better with php5.

find :
$review_info = array_merge($reviews_text, $reviews_average, $products_name);
$rInfo_array = array_merge($reviews, $review_info, $products_image);

replace :
$review_info = array_merge((array)$reviews_text, (array)$reviews_average, (array)$products_name);
$rInfo_array = array_merge((array)$reviews, (array)$review_info,
(array)$products_image);

Complete Reviews System (Admin) 1.5.3 3 Aug 2009
Complete Reviews System (Admin) V1.5.2 15 Jul 2009
Complete Reviews System (Admin) V1.5.1 16 May 2009
Complete Reviews System (Admin) V1.5.txt 16 Feb 2009
Complete Reviews System with Star Rating System 15 Sep 2008
Review System Mod 1 - Single Review 22 Apr 2008
require file was put after the variables were used. 28 Sep 2007
Complete Reviews System 18 Jul 2006

Note: Contributions are used at own risk.