How to create custom customer field in Magento login page? - magento

I was searching for the latest method to add custom fields on Magento 1.6 login page. All the articles that I found was for earlier versions on Magento and It's not working.

Edit customer/form/login.phtml template
Edit loginPostAction from Mage_Customer_AccountController (see How can I override a Magento controller?)

Related

Magento 2.2 - adding name field to newsletter module

I'm using magento 2.2 and I want to add name field for newsletter module, so there has to be input box in front-end, and also it needs to show in backend, how to achieve this? There is a lot of posts about this, but they all are on older magento versions. So can someone explain how to achieve this?

Configuring joomshopping extension in joomla website

I am new to joomla. I am trying to configure the joomshopping shopping cart extension in my website. I installed it and added products. Now the real problem is i cannot figure out how to view the products page. Do i need to create an url seperately? or where can i find the product page url? Looking for some help immediately.
go to menu->main menu->new mwnu->joomshpoing->procuct->category_id
save and commit!

Magento adding a new filed on the registration panel

Hi guys i'm trying to add a new field in magento registration panel named hospital address and i need to add more fields... i've done this with some changes in magento core files like register.phtml AccountController.php config.xml Grid.php Account.php CustomerController.php edit.phtml everything has been working but at the end i have found that admin can edit the hospital address but customers can't edit this when they login to account edit page is any one here know this issue and have a solution ? here is the full script http://goo.gl/EBMzM
Thanks
Since magento is based on entitiy attribute model. You can not manage the attribute of the registration field directly. If you are a software developer you can create attribibute in database and change in your code in the same way. If you are not a software developer you can install a module which provide facelity to manage your resistration page. You can search on google by keyword "magento registration field manager" and found verious module for the registration field management.

Magento - Print category attribute on category page?

I followed the below tutorial to add a custom attribute to my Magento categories:
http://www.atwix.com/magento/add-category-attribute/
It seems to have worked as the text field shows in the backend and I can see the attribute in the database (eav_attribute).
The problem is I can't get the attribute to display in the frontend. I have added the code suggested in the tutorial to view.phtml but it didn't work.
I have also tried
if($_category->getCustomAttribute()) {
echo $_category->getCustomAttribute();
}
Any ideas for getting this to display in Magento 1.7?
Try doing a reindex in admin
In Admin -> System -> Index Management

How can I add custom fields in cms edit page (Admin Panel)?

I am facing an issue in Magento. I want to add some custom fields to Magento Admin Panel CMS Edit Page. I got a page while searching where it describes adding a custom field in CMS page: http://blog.flexishore.com/2011/08/add-custom-field-to-cms-page/ .
I have followed every step in this, but I am still getting an error Call to undefined function getLoad().
Can anyone here explain me how to add custom fields in CMS page?
You can try this article (http://www.atwix.com/magento/adding-custom-attribute-to-a-cms-page/) as well, it's more simple, maybe it will be helpful for you.
Also don't forget about cache, I recommend you disable it when you are testing your own modules.

Resources