Hi,
It must be that you use different versions of Joomla.
The slider system is based on Joomla's. On Joomla 3, it uses bootstrap's if the "use bootstrap design" setting of the HikaShop configuration is activated. On Joomla 2.5, or Joomla 3 with the "user boostrap design" deactivated, it uses the "sliders" library of Joomla.
And on Joomla 1.5 it uses the "pane" library of Joomla.
If you edit the file "listing_list" of the view "category" via the menu Display>Views, you can add the code:
$this->tabs->mode = "sliders";
or
$this->tabs->mode = "boostrap";
after the line:
$this->tabs = hikashop_get('helper.sliders');
To switch to force the mode. like you want.