Would anyone give me a step by step guide on how to add custom fields to Magento registration form which works on Magento 1.7. I have come across plenty & all of them were either supported for older version or too complicated for my understanding as I am pretty much new to it.
0
votes
It would be easier if you tell us what exactly you have already done and at which point you stuck trying the "too complicated" tutorials.
- Tobias
Well I guess I was pretty clear that I am a newbie and I am going nowhere through those tutorials & hence asking for a step by step guide,if I was stuck anywhere I would have been asking the next step,isn't it?So is there a way anyone can help me on this?
- Sudip Roy
This question may be closed as "too broad".
- halfer
2 Answers
3
votes
You need to add Customer Attribute
so you can do this with custom module you build or there is some modules out there that gives you this functionality like customer-attributes
It could be on the backend only or the frontend as well etc.. it has alot of features
This feature already in Enterprise edition but for community edition you need to implement it, or use custom modules
1
votes
You can obtain what you need without spending any euro... using this extension and then putting in your regiter.phtml and edit.phtml something like this:
<li class="control">
<div class="input-box">
<input type="text" name="attribute-name" title="<?php echo $this->__('your pretty label') ?>" id="attribute-name" value="<?= $this->getCustomer()->getAttributeName()); ?>" class="input" />
</div>
<label for="attribute-name"><?php echo $this->__("your pretty label") ?></label>
</li>