Hi,
First you have to re-download HikaMarket 1.3.0, I update the package in order to allow a plugin to access to the toolbar (and activate a trigger).
After that, you will be able to use that little custom plugin.
<?php
class plgHikamarketCustomtoolbar01 extends JPlugin {
public function onHikamarketBeforeDisplayView(&$view) {
$app = JFactory::getApplication();
$ctrl = JRequest::getCmd('ctrl', '');
$layout = $view->getLayout();
if(!$app->isAdmin() && $ctrl == 'product' && $layout = 'form' && isset($view->toolbar['apply'])) {
unset($view->toolbar['apply']);
}
}
}
It uses a special view trigger in order to access to the toolbar of the page and modify it.
In our case, it removes the button "apply". But you can also change a button or add new ones.
Regards,