Hi,
Yes I understood that you have solved the limit problem, and I was telling you to try to add the code:
<?php $class = hikashop_get('class.category');
$manufacturer = $class->get($this->element->product_manufacturer_id);
echo $manufacturer->category_name; ?>
Before:
<?php
echo substr($this->row->product_name, 0, 7); //To display 7 characters.
?>
Because I tried the code:
<?php $class = hikashop_get('class.category');
$manufacturer = $class->get($this->element->product_manufacturer_id);
echo $manufacturer->category_name; ?>
And it's working fine on my end.