Jump to content

Update products with CSV without deleting old information


jramirez

Recommended Posts

It is possible via mysql aproach. Go to PhpMyAdmin and try 

UPDATE ps_product_lang SET description = CONCAT(IFNULL(description ,''), ' Your text to append') WHERE id_product IN (1,2,3) AND id_lang = 1 AND id_shop = 1;

Ofcourse You need to create backup of this table and in id_product IN those numbers are IDs of products that changes will affect. Get ids from CSV file.

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...