Hi,
Do you have edited any views related on the products ?
You have probably to edit the file "components/com_hikashop/views/product/view.html.php", function "show()" add:
$filters['category'] = 'a.category_id = '.(int)$category_id;
After(in the "if" condition):
if(empty($category_id)){
$query='SELECT a.category_id FROM '.hikashop_table('product_category').' AS a WHERE a.product_id='.(int)$product_id.' ORDER BY a.product_category_id ASC';
$database->setQuery($query);
$category_id = $database->loadResult();