Mass Code Change

I was once able to do a mass code change via SQL Query but forgot the code?



Is there any other way to do a mass code change?



Is there any addon available?

What do you mean by 'Mass code change'? Do you mean changing values stored in the database in bulk? Or changing code in the CS-Cart source files?

Hi



I think he means Sku codeā€¦



If yes you don't need MySQL query for that.



Just use the bulk edit in product list.



Fotis


For mass changes of over 300 products that are randomized i recommend this



SQL Query ( PHP My Admin )



update cscart_products set product_code = replace(product_code,' old code ',' new code ');



Thanks for help guys