Hi,
You need to edit item-sidebar.php inside bender folder:
1.- Locate this block:
<form action="<?php echo osc_base_url(true); ?>" method="post" name="contact_form" id="contact_form" <?php if(osc_item_attachment()) { echo 'enctype="multipart/form-data"'; };?> >
and replace it with:
<?php $allowed_attachment_cats = array(XX, YY);
$attachment = (in_array(osc_item_category_id(), $allowed_attachment_cats) ? true : false); ?>
<form action="<?php echo osc_base_url(true); ?>" method="post" name="contact_form" id="contact_form" <?php if(osc_item_attachment() && $attachment) { echo 'enctype="multipart/form-data"'; };?> >
Change XX,YY to the ID's of the categories for which you want to allow attachments.
2.- Below, locate this line:
<?php if(osc_item_attachment()) { ?>
Replace it with:
<?php if(osc_item_attachment() && $attachment) { ?>
Regards