I'm really curious and boggled to see no one has asked about this feature before (I assumed so as I couldn't find it in the forum). It is a common feature that while users look at a product page, there will be some suggestions along the side or at bottom that cross sells other similar products, usually with headers like "May we also suggest...", "Customers who bought this also bought..." does Ubercart have this already or there are other ways to achieve this?
I saw this feature being implemented at sundaysenergy.org ("Similar" block"), but it would be a lot nicer if it can display the thumbnail of the products also.
I'm in the midst of planning an implementation of online store, this is important to have and I need to decide if I have to use another shopping cart or I can use Ubercart. Someone please help enlighten me 







Others have asked about it before, but all that got lost in the server crash. No one's announced that they're working on anything like that. I started a marketing module to hold this kind of functionality, but I really only got as far as this query:
<?php$result = db_query("SELECT that.nid, COUNT(that.nid) AS frequency FROM {uc_order_products} AS this LEFT JOIN uc_order_products AS that ON this.order_id = that.order_id LEFT JOIN uc_orders AS orders ON that.order_id = orders.order_id WHERE this.nid = %d AND that.nid != %d GROUP BY that.nid ORDER BY frequency DESC, orders.created DESC LIMIT %d", $nid, $nid, variable_get('uc_marketing_display_limit', 6));
?>
I don't see myself going back to it unless I get really burnt out on other problems. Anybody is welcome to take this and run with it.