Change Select Category Look

Hi
I Just Upgrade to

4.9.2.SP1 and i have this problem

When i add or edit product the select of categories list is appear like a search bar similar to picture one.
I want it like picture 2.Thanks

From where can i edit this option.

2.PNG

1.PNG

Any one can help me please??

Any one can help me please??

It is required to examine issue on your server. Most possibly 3rd party addon overrides default product template

It is required to examine issue on your server. Most possibly 3rd party addon overrides default product template

Thanks for your replay?

Can you explain more detalies for me.

please.

Thanks for your replay?

Can you explain more detalies for me.

please.

3rd party addons can completely overrides templates. Possibly update product template is overriden by the code from old CS-Cart versions

3rd party addons can completely overrides templates. Possibly update product template is overriden by the code from old CS-Cart versions

What you suggest for me to do?

What yo

3rd party addons can completely overrides templates. Possibly update product template is overriden by the code from old CS-Cart versions

I disabled all third party addons and still not work

u suggest for me to do?

Try to contact CS-Cart support team or hire someone from this forum to perform the examination

Try to contact CS-Cart support team or hire someone from this forum to perform the examination


I can do it by my self but i need little help from you this problem apper only to vendors the admin account don’t have this problem.

I solve it i was disable the picker in the vendor_multivendor.php file

Thanks

I solve it i was disable the picker in the vendor_multivendor.php file


Please clarify

Last time i modified this file public_html/app/schemas/permissions/vendor_multivendor.php
'categories' => array (
'modes' => array (
'delete' => array (
'permissions' => false
),
// Why .add was true ???
'add' => array (
'permissions' => false
),
'm_add' => array (
'permissions' => false
),
'm_update' => array (
'permissions' => false
),
'picker' => array (
'permissions' => false
),
),
'permissions' => array ('GET' => true, 'POST' => false),
),

this modifying make the categories picker disable for vendors.

then i re modifying this file to this

'categories' => array (
'modes' => array (
'delete' => array (
'permissions' => false
),
// Why .add was true ???
'add' => array (
'permissions' => false
),
'm_add' => array (
'permissions' => false
),
'm_update' => array (
'permissions' => false
),
'picker' => array (
'permissions' => true
),
),
'permissions' => array ('GET' => true, 'POST' => false),
),

the problem was solved.

Thanks a lot

Thank you for the information