Found it! 17 Apr 2005... started to write the instructions and obviously never finished it
The original guidance came from DrByte, but for anyone else who wants to do something similar, the file to edit is admin/includes/modules/product/collect_info.php and around line 412 you should find
Code:
echo zen_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '100%', '30', (isset($products_description[$languages[$i]['id']])) ? stripslashes($products_description[$languages[$i]['id']]) : zen_get_products_description($pInfo->products_id, $languages[$i]['id'])); //,'id="'.'products_description' . $languages[$i]['id'] . '"');
replace this with
Code:
$textarea_content = (isset($products_description[$languages[$i]['id']])) ? stripslashes($products_description[$languages[$i]['id']]) : zen_get_products_description($pInfo->products_id, $languages[$i]['id']);
if ($textarea_content == "") {
$lines = file(DIR_FS_CATALOG . 'extras/default_html_content_for_products.html');
foreach ($lines as $line) {
$textarea_content .= trim($line);
}
}
echo zen_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '600', '20', $textarea_content);
REMEMBER the above is a core file so keep a backup - it will be overwritten in an upgrade (as mine was, but I did have the backup...just couldn't remember where the heck it was! LOL)
Create your html content in a file such as that named in red above and place in your extras directory.