Showing posts with label CSV. Show all posts
Showing posts with label CSV. Show all posts

Friday, 17 July 2015

Import Customer Group Price for Product using CSV in Magento

Hi,

Please use the below Github link to Download the Extension and install to your Magento site.

Once after installing, you will see the import option System > Import/Export > Import - Custom.

https://github.com/ryaan-anthony/import-group-prices 

Thursday, 7 May 2015

Handle Special Characters exporting Data in CSV

Please use below code before fputcsv function

$df = fopen($filepath, 'w');
fprintf($df, chr(0xEF).chr(0xBB).chr(0xBF));