Hi,
I see, you do not have the "cancel_redirect" variable when you open the vendor page.
In the file "administrator/components/com_hikamarket/controllers/vendor.php" please replace
'display' => array('display', 'show', 'listing', 'admin', 'products', 'invoices', 'pay', 'geninvoice', 'selection', 'useselection', 'getprice', 'searchfields'),By:
'display' => array('display', 'show', 'cancel', 'listing', 'admin', 'products', 'invoices', 'pay', 'geninvoice', 'selection', 'useselection', 'getprice', 'searchfields'),
And
	public function store() {
		return parent::adminStore();
	}By:
	public function store() {
		return parent::adminStore();
	}
	public function cancel(){
		$this->setRedirect( hikamarket::completeLink('vendor',false,true) );
	}I will add this patch in the next HikaMarket build.
Regards,