Hi,
Change the line:
$ids[] = $mainProduct->product_id;
to:
$ids[] = (int)$mainProduct->product_id;
and change the line:
$query->where = array('product_id IN ('.implode(',',$ids).') OR product_parent_id IN ('.implode(',',$ids).')');
to:
if(count($ids))
$query->where = array('product_id IN ('.implode(',',$ids).') OR product_parent_id IN ('.implode(',',$ids).')');
else
$query->where = array('product_id=0');
in the file plugins/hikashop/massaction_product/massaction_product.php
and that should fix that problem.