Removing Product Info For Vendors?

I would like to remove or hide certain areas of the general tab in the product edit page. I have attached am image of what I am trying to do. Can this info be hidden using the my_changes add on? Thanks.

product-edit.JPG

You should override the following file:

design/backend/templates/views/products/update.tpl

and use the following condition in it:

{if $auth.user_type != 'V'}
   CODE HERE WILL BE SHOWN FOR ADMIN ONLY
{/if}

About overrrides please check here:

http://docs.cs-cart.com/4.3.x/developer_guide/addons/hooking/tpl_hooks.html

This does not seem to be working for me.

It works on my local installation. Do not forget to clear cache

Got it to work! Thanks for all of the help.

Got it to work! Thanks for all of the help.

Thank you for keeping us updated. We are glad to help you.