In magento admin how to create a custom field in add products page - magento

In my Magento admin add products page, I need to create a custom input field as subtitle for the product name. While adding products in Magento, we already have fields such as Name, Description, Short Description and so on. Among this I need to create a new field as Title to get the simple name of products. How do I create this custom field in admin?

You have to create custom attribute for that .Follow this tutorial it may help you to create custom attribute. please have a look at a
http://www.magentocommerce.com/knowledge-base/entry/how-do-attributes-work-in-magento
and
http://www.magentocommerce.com/knowledge-base/entry/tutorial-creating-attributes-custom-fields

Find manage attributes, then add a new attribute. You can select its type. And then you can add this attribute to your attribute set. The attribute set which you are using, it may be default or any custom created. After adding you will find that attribute in your add Product page.

Related

How to add custom attributes to a specific category in Magento

I need to add some custom attributes to a category in Magento. I only want to use for a special category, not all.
Thanks
Do you mean that you want products in category A have a set of attributes while products in category B have another set of attributes?
If so, you should create a new attribute set in Catalog->Attributes->Manage Attribute Sets, and add all attributes you need for the specific category. And when you create products for this category, just choose the new attribute set.
Well if it is not what you mean, please give more detailed explanation.
Hope it helps

How we can add attributes for old product in Magento?

I have Magento portal and I want to filter option through the attributes. So is there any possibility to add the attributes for old product which already in portal?
Yes, sure can add attributes for existing attributes.
go to catalog > Manage attributes > create new attribute and than go for Attribute set and drag the new attribute to attribute set.
than you can give attribute values for each products manually or for all products once using "update attributes" option.
than you can display the attributes under layered navigation.
feel free to ask any doubts
For the older product I have added the attributes and include in the default attribute set. So it will be by default add for all the products only you have to select for each product.
Please find the relevant image:

How to add custom attribute in magento Registration

I am creating a sign up form for Magneto, I want to add few more information from customer like place of birth. How can I do this, I tried many ways but all are use less, please explain step by step.
you can go through this link Magento Module Creater
and create module with Need Add Customer Attribute : yes and it will give the field for your customer attribute. and create field as much as you.after creating field just click Create Magento Module (download) it will give you a ready module with your custom customer attribute. Note:- Selecte Forms to Use In in which your field will be populated for user input
Hope this will help you.

Add custom description to magento Attributes and display it on the front end

I have a site where I added some custom attributes and displayed in the frontend. Now I want add a description of the attributes and display it in the frontend in a tooltip or whatever.
I have checked this reference
Add custom property to magento Attributes and display it on the front end on stackoverflow. But its not clear in which particular page I have to use it. I don't want to use any plugin. Please refer me a solution with custom code.
When you Add a Custom Attribute to the products, it will stored in to the Magento system as EAV attribute. So you must look into the EAV structure. When you look into the table "eav_attribute" you can understand how the attributes are stored.
So, if you want to Add and manage the Tooltip Description for the Attributes, You must add one more column to the "eav_attribute" table. for this you must create a custom module to override the Magento core eav functionalities. By following the above link you can create the tooltip Description text for the attributes.

How to pass our parameters to add to cart page in magento

I am new in magento.My product has model type and model version.I want to pass model type and version to add to cart page and take that values in shoping cart page.But i don't get any idea .Any one please help to solve the problem.
You could:
Create custom option for 'model type' and 'model version' for each product. See Adding Custom Product Options in Magento
Create a custom module that add these options programmatically to additional_options See Add options to quote item

Resources