Hi,
If you want to disable the ACL, for the moment the best is to use a view override and remove the column from the view.
It's a shame because we just release a new version of HikaMarket today, if you asked it some days before I would be able to include this feature in the build.
Because the idea to have options (vendor right) for setting the product price currency/acl is a good idea !
So I will put it in my TODO list for the next version.
In the view "productmarket | form_price", find and remove these blocks:
<?php if(hikashop_level(2)){ ?>
<th class="title"><?php
echo JText::_( 'ACCESS_LEVEL' );
?></th>
<?php } ?>
<?php if(hikashop_level(2)){ ?>
<td class="hikam_acl"><?php
if(!empty($price->price_id)) {
echo $this->joomlaAcl->displayButton('price['.$i.'][price_access]', @$price->price_access);
} else {
echo '--';
}
?></td>
<?php } ?>
<?php if(hikashop_level(2)) { ?>
<td><?php echo $this->joomlaAcl->displayButton('price[{id}][price_access]', 'all'); ?></td>
<?php } ?>
Regards,