Trying to gather info on adding/replacing a field name and found this:
Quote Originally Posted by chadderuski View Post
The main work is in the includes/functions/extra_functions/easy_populate_4.php file

Go down to the function ep_4_set_filelayout() function. You are going to add layout entries to the "full" case.

Look a the entries for:

if ($ep_supported_mods['upc'] == true) { // UPC Mod
$filelayout[] = 'v_products_upc';
}

And a little further down:

$filelayout_sql = 'SELECT ....
if ($ep_supported_mods['upc'] == true) { // UPC Code mod
$filelayout_sql .= 'p.products_upc as v_products_upc,';
}

Basically you are going to create your own mod, and add your file layout and sql statements here.

You will need to define your mod in the easypopulate_4.php file, and then there are a number of additional edits to the easypopulate_4_import.php file.

If this is beyond your php knowledge, PM me a list of the field names as they appear in your products table and their field types. Verify them with phpMyAdmin.

But you should be able to puzzle it out easily enough... $ep_supported_mods[] is how I switch on entries for these mods. So they are found pretty easily.

-chadd
Can I safely assume that the file in bold blue should actually be ADMIN/includes/functions/extra_functions/easy_populate_4.php or am i missing a file?