Ruu Posted February 15, 2015 Share Posted February 15, 2015 Hi all Im trying to download my store product links. Is SQL my best option, if so which file is best suited for this task. This would give me direct link to each product etc mystore.com/45-rednikehoppers thanks Link to comment Share on other sites More sharing options...
parsifal Posted February 18, 2015 Share Posted February 18, 2015 Hi Ruu. You could start with an SQL query like the following: SELECT CONCAT('http://mystore.com/', `id_product`, '-', `link_rewrite`) AS url FROM ps_product_lang ; It may need tweaking, depending on your particular setup (e.g. you are using more than one languages in your eshop etc.) Link to comment Share on other sites More sharing options...
Recommended Posts