Hi,
You have to create menu links to the brands categories.
In Joomla > Menu, create a hikashop type menu, "product listing" and in the HikaShop options select the desired brand (to access the brand categories you first have to click on "root" in the category tree).
The alias of the menu must contain the brand name.
Then in the file, replace :
echo $manufacturer->category_name.'<br/>';
By:
echo '<a href="/yourLink-$manufacturer->category_name">$manufacturer->category_name.'</a><br/>';
Where "yourLink" is the standard link and you set dynamically the brand name.
Hope this will help you.