poki Posted February 3, 2012 Share Posted February 3, 2012 Hi! How can i hide all products from a supplier ? (without clicking hide on each product) Dose somebody know ? Thanks! Link to comment Share on other sites More sharing options...
poki Posted February 5, 2012 Author Share Posted February 5, 2012 nobody ? Link to comment Share on other sites More sharing options...
keuper Posted March 12, 2012 Share Posted March 12, 2012 I need the same feature on version 1.4.7. Link to comment Share on other sites More sharing options...
Prescol Posted March 12, 2012 Share Posted March 12, 2012 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 More sharing options...
Prescol Posted March 12, 2012 Share Posted March 12, 2012 For manufacturer change id_supplier by id_manufacturer Link to comment Share on other sites More sharing options...
Recommended Posts