Hi,
In the file "administrator/components/com_hikashop/classes/widget.php", function "data()" please replace the code:
$leftjoin['product'] = ' LEFT JOIN '.hikashop_table('product').' AS p ON prod.product_id = p.product_id ';
$leftjoin['product_category'] = ' LEFT JOIN '.hikashop_table('product_category').' AS cat ON cat.product_id = p.product_id OR cat.product_id=p.product_parent_id';
if($widget->widget_params->category_childs){
By:
if(!isset($leftjoin['product']))
$leftjoin['product'] = ' LEFT JOIN '.hikashop_table('product').' AS p ON prod.product_id = p.product_id ';
$leftjoin['product_category'] = ' LEFT JOIN '.hikashop_table('product_category').' AS cat ON cat.product_id = p.product_id OR cat.product_id=p.product_parent_id';
if($widget->widget_params->category_childs){
If that don't solve the issue, please give us a screenshot of you report settings in order to reproduce the issue on our end.