Thanks for the quick reply.
I wanted to create for now a field called "nick" (Nickname), so I created in the database
Code: Select all
ALTER TABLE `customer` ADD `nick` VARCHAR( 32 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ;
After that I edited the New_Field_Registration_Form_1.1.xml and add:
Code: Select all
<!--###CATALOG=>VIEW FILES###-->
<!--standar register-->
<file name="catalog/view/theme/default/template/account/register.tpl">
<operation><search position="before"><![CDATA[
<td><span class="required">*</span> <?php echo $entry_firstname; ?></td>
]]></search><add><![CDATA[
<tr>
<td><span class="required">*</span> <?php echo $entry_cedu; ?></td>
<td><input type="text" name="cedu" value="<?php echo $cedu; ?>" />
<?php if ($error_cedu) { ?>
<span class="error"><?php echo $error_cedu; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><span class="required">*</span> <?php echo $entry_nick; ?></td>
<td><input type="text" name="nick" value="<?php echo $nick; ?>" />
<?php if ($error_nick) { ?>
<span class="error"><?php echo $error_nick; ?></span>
<?php } ?></td>
</tr>
]]></add></operation></file>

Probably I am missing some code, correct?