in mp_reports.module
search:
$sql_count = "SELECT COUNT(nid) FROM {node} WHERE node.uid = %d AND type IN (". implode(", ", $product_types) .")";

Replace with:
$sql_count = "SELECT COUNT(*) FROM {node} n WHERE n.uid = %d AND type IN (". implode(", ", $product_types) .")";

// The original sql causes this error: Unknown column 'node.uid' in 'where clause' query: SELECT COUNT(nid) FROM tbl_node WHERE node.uid = 1 AND type IN ('product')

We're working on buyout module + ubercart marketplace integration. :) So far it's great. Thanks to Tugrid.

Comments

kgp22’s picture

Oops duplicate post. Sorry.

Turgrid’s picture

Status: Active » Closed (duplicate)