Hi,
HikaMarket uses an HikaShop trigger to fill some information into the HikaShop product list which it stored into the "extraData" object.
After that, HikaShop display the extraData in different parts.
If you edit a product listing view (like "listing_img_title" or other "listing_img.." views) you will see some code like that:
<?php if(!empty($this->row->extraData->top)) { echo implode("\r\n",$this->row->extraData->top); } ?>
<?php if(!empty($this->row->extraData->afterProductName)) { echo implode("\r\n",$this->row->extraData->afterProductName); } ?>
<?php if(!empty($this->row->extraData->bottom)) { echo implode("\r\n",$this->row->extraData->bottom); } ?>
You can remove it in order to hide the HikaMarket adds. You can remove the vendor name and also the edit button.
We will see to improve this feature. What I want to integrate is a new option for the product listing modules which will allow you to choose if you want to display the vendor name or not. But the way to integrate it by trigger is not very simple and I want to use something "nice" that other developers could also use if they want to create new features for HikaShop.
Regards,