How To Dis Activate "request Withdrawal Button" For Vendor

Hello,

since I am using a payment gateway there is no need for my customers for this feature and it is confusing. So can I leave him to see "accounting" but to hide the plus button for a withdrawal request?

best

Bernhard

Solved it: You have to look for the following code under design\backend\templates\views\companies\balance.tpl


{include file="common/popupbox.tpl"
id="add_payment"
text=$popup_title
content=$smarty.capture.add_new_picker
title=$btn_title
act="general"
icon="icon-plus"

}


And overwrite it with the following code:

{if $runtime.company_id}

{else}

{include file="common/popupbox.tpl"
id="add_payment"
text=$popup_title
content=$smarty.capture.add_new_picker
title=$btn_title
act="general"
icon="icon-plus"

}
{/if}