Jump to content

Featured Products, not Most Recently Added


Guest Toby Wallis

Recommended Posts

Guest Toby Wallis

I want to show several randomly-selected items on my front page where currently it shows most recently added. The featured items is a single product in a box on the side.

So when you view the front page instead of having (as I have set it up) six most recent products showing, I would like six random products which would change when the page is reloaded.

Is this possible? Or maybe a Mod?

Thanks

===Toby===

Link to comment
Share on other sites

In /includes/content/index.inc.php, look for:

$latestProducts = $db->select("SELECT productId, image, price, name, sale_price FROM ".$glob['dbprefix']."CubeCart_inventory WHERE `showFeatured` = 1 ORDER BY productId DESC LIMIT ".$config['noLatestProds']);


Change to:




$latestProducts = $db->select("SELECT productId, image, price, name, sale_price FROM ".$glob['dbprefix']."CubeCart_inventory WHERE `showFeatured` = 1 ORDER BY RAND(".$seed.") LIMIT ".$config['noLatestProds']);

I think that should do the trick.

Link to comment
Share on other sites

Guest Toby Wallis

In /includes/content/index.inc.php, look for:

$latestProducts = $db->select("SELECT productId, image, price, name, sale_price FROM ".$glob['dbprefix']."CubeCart_inventory WHERE `showFeatured` = 1 ORDER BY productId DESC LIMIT ".$config['noLatestProds']);


Change to:




$latestProducts = $db->select("SELECT productId, image, price, name, sale_price FROM ".$glob['dbprefix']."CubeCart_inventory WHERE `showFeatured` = 1 ORDER BY RAND(".$seed.") LIMIT ".$config['noLatestProds']);

I think that should do the trick.

Thanks, Robsta - I'll give it a try in the morning (1/4 to 11 here in UK)

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...