Jump to content

How can i hide all products from a supplier/manufacturers?


Recommended Posts

  • 1 month later...

You can do this with PhpMyAdmin, creating a query that selects all products of a supplier and change it

UPDATE ps_product SET active=0 WHERE id_supplier=yoursupplierid

Where ps_ Is your database prefix

To easily know which is the supplier id go to BO, and on the desired supplier click the button edit.

Check the URL: It might look like this

http://localhost/presta/adminpresta/index.php?tab=AdminSuppliers&id_supplier=1&updatesupplier&token=

_______________________________________________________________________|^^| This is the supplier id.

 

To reactivate, repeat the process but change

active=0

by

active=1

Link to comment
Share on other sites

×
×
  • Create New...