Jump to content

Is this Possible


Guest cntgifts

Recommended Posts

i would liek to change my popular produucts box to lsit my best sellers

is it possible and how would it be done

Yes, it's possible!

in includes/boxes/popularProducts.inc.php

find this line of code

$popularProds = $db->select("SELECT name, productId FROM ".$glob['dbprefix']."CubeCart_inventory ORDER BY popularity DESC",$config['noPopularBoxItems']);


And replace it with this line


$popularProds = $db->select("SELECT name, productId, sum(quantity) as sales FROM ".$glob['dbprefix']."CubeCart_order_inv GROUP BY productId ORDER BY sales DESC",$config['noPopularBoxItems']);

That's it

Good luck

Thanks

/Goober

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...