@nijamutheen
You can only do it on code level in file:
/oc-content/plugins/osclass_pay/functions.php
Find code:
function osp_product_to_cart_link($item_id = -1, $quantity = 1, $is_hook = 0) {
$sellers = explode(',', osp_param('seller_users'));
$html = '';
if($item_id == -1) {
$item_id = osc_item_id();
}
Bellow this code you can define categories that have quantity disabled, so add there:
$item = Item::newInstance()->findByPrimaryKey($item_id);
if(in_array($item['fk_i_category_id'], array(1,2,3,4,5,6,7,8))) {
return false;
}
Where 1 - 8 are ids of categories where nothing is shown.