Today i started working in registration form in magento site. As you know by default it’s having gender drop down. I need to change that to checkbox.
So far i went to register.phtml file, and tried to add <input type="radio" ...../> select files, but this didn’t worked.
Did anyone know how to solve this !
please give me some suggestions to so this….
Magento uses widgets on registration form. In fact in template register.phtml you can see lines:
This particular widget can be found in
template/customer/widgetdirectory. So in order to change select into radio buttons, copy it (template) to your theme and modify, e.g.:Hope didn’t make any typo.