Hi again,
I have figured this out, I just needed to add this line in the easypopulate.php file:
$filelayout['v_manufacturers_name'] = $iii++;
just after this line:
case 'froogle':
// this is going to be a little interesting because we need
// a way to map from internal names to external names
//
// Before it didn't matter, but with froogle needing particular headers,
// The file layout is dynamically made depending on the number of languages
$iii = 0;
$filelayout = array();
Then I get something like this:
Sandisk,"722","66.51","http://www.domain.com/product_info.php?products_id=27","126",
But I need:
Sandisk,722;66.51;http://www.domain.com/product_info.php?products_id=27;126;
Does anyone know how to get this formating in CSV?
shasidi