Hi,
In the HikaMarket view "vendormarket / showcontainer_default", you have to replace
<div id="hikamarket_vendor_description" class="hikamarket_vendor_description"><?php
echo $this->vendor->vendor_description;
?></div>
By
<div id="hikamarket_vendor_description" class="hikamarket_vendor_description"><?php
echo JHTML::_('content.prepare', $this->vendor->vendor_description);
?></div>
In order to allow the content plugins to parse their data.
I think I'll add an option in HikaMarket in order to switch the mode of the display for the vendor description.
Regards,