I’m trying / wanting to change two fields in the guest checkout page step 1.
First:
Completely remove the ‘Fax:’ field so that it is not there at all.
I know you can simply remove these lines from
Code: Select all
catalog/view/theme/?theme/template/checkout/guest_step_1.tpl
Code: Select all
<tr>
<td><?php echo $entry_fax; ?></td>
<td><input type="text" name="fax" value="<?php echo $fax; ?>" /></td>
</tr>
Second:
I “simply” would like to make the telephone field non-required (optional)
I guess the span class on the 1st line here would remove the red asterisk:
Code: Select all
<tr>
<td><span class="required">*</span> <?php echo $entry_telephone; ?></td>
<td><input type="text" name="telephone" value="<?php echo $telephone; ?>" />
<?php if ($error_telephone) { ?>
<span class="error"><?php echo $error_telephone; ?></span>
<?php } ?></td>
</tr>
I have searched and only found links to other posts that refer to making postcode required when creating account.
Any specific details for my venture would be greatly appreciated.
Many thanks
Simon