Create Average Product Rating with Zen Cart

Asked By 20 points N/A Posted on -
qa-featured

Hello fellows,

How to create zen cart star rating? For some ecommerce shopping cart system we should have to put some star rating for the best seller products for the week or month. How can I possible create a star rating bar? I need some assistance.

Regards,

Martha Nelson.

SHARE
Answered By 0 points N/A #172659

Create Average Product Rating with Zen Cart

qa-featured

Hello Nelson,

You wanted to know how to add star rating bar for Zen Chart. I am submitting some solution for you.

CREATE TABLE 'ratings' (

'id' varchar(25) NOT NULL,

'total_votes' int (11) NOT NULL default 0,

'total_value' int(11) NOT NULL default 0,                                                                        

'used_ips' longtext,

PRIMARY KEY( 'id' )

) TYPE= MyISAM AYTO_INCREMENT=3;

That is how you can add a star ratings bar on Zen chart.

If you can work with it after completing please say thanks.

Related Questions