Hi,
In HikaMarket you can create "vendor categories".
By default, all vendor categories will be created under the same parent category :
www.hikashop.com/support/documentation/1...nfig_market_category
But, thanks to a custom field and a little plugin, you can control dynamically where the vendor category will be.
www.hikashop.com/support/documentation/1...VendorCategoryCreate
/**
* @param $vendor - the vendor object
* @param $category - the category object that we will use for the creation
* @param $do - boolean value. Set it "false" to stop the category creation
*/
public function onBeforeVendorCategoryCreate(&$vendor, &$category, &$do) {
}
Using that trigger you can change the "category_parent_id" value of the category object.
And with the vendor object, you can read the value of the vendor custom field you created (to let the vendor choose his "section").
We also recommend you to use the setting "Link vendor category to vendor page by default" ; so you just have to create category listing and by clicking on a vendor category the user will be redirected to the HikaMarket vendor page.
Regards,