1. Locate the file includes\templates\template_default\templates\tpl_modules_create_account.php, open it, then delete
HTML Code:
<label class="inputLabel" for="postcode"><?php echo ENTRY_POST_CODE; ?></label>
<?php echo zen_draw_input_field('postcode', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_postcode', '40') . ' id="postcode"') . (zen_not_null(ENTRY_POST_CODE_TEXT) ? '<span class="alert">' . ENTRY_POST_CODE_TEXT . '</span>': ''); ?>
<br class="clearBoth" />
2. Locate the file modules\create_account.php, find the line if (strlen($postcode) < ENTRY_POSTCODE_MIN_LENGTH) { etc. and then change everything like this:
HTML Code:
if (strlen($postcode) < ENTRY_POSTCODE_MIN_LENGTH) {
$error = false;
// $messageStack->add('create_account', ENTRY_POST_CODE_ERROR);
}
This worked for me. GL