how to divide product attributes table in sections in magento - magento

I need to put a group attributes in section
it means every title attribute are header in product attributes table
How I can do It
this my site
http://select-mob.com/huawei-honor-4c.html
this what I need to do
https://www.techbeat.mobi/eg_en/huawei-honor-4x.html

You can implement such feature described in following link
How to display Attribute Group Name on Product page?
In that code, first attribute group will be displayed and then all its attributes will be displayed.

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 To Create Multiple Attribute In Magento For Product Details Page

I want to create multiple attribute in magento for product details page because i have to show two things on the product details page and they are attribute first of all i have color swatches with the help of attribute i am showing on the product details page the next thing is the google map and each different product has a different google map how to show two attribute in magento product details page any help would be very appreciated
You would need to first create an attribute. Read here on a simple tutorial on how to do that.
To display any product attribute in magento you need the "Attribute Code". Lets say you make a attribute called "Gogole Map" with a Attribute Code "gmap". You would need to open the html for the product detail page which can be found
app/design/frontend/default/[your template]/template/catalog/product/view.phtml
and just add the following code to where you want to place
<?php echo $_product_getGmap();?>

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

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.

Display products against attributes in magento

I am working on custom module in magento.
I create two new attributes (combo box) make and location. After that I add values for these attributes using custom code against specific product. Like I add make "Sony" and location is "Australia" against product 1 (1 is id for product).
Now on admin side i want to display this product with attributes values like make is Sony and location is Australia and product is 1.
I found some tables where these values are linked like (catalog_product_entity_int,eav_attribute,eav_attribute_option,eav_attribute_option_value), but I am unable to query such records. The page where I want to display data I have attribute id and attribute code.
Can anyone knows how I can figure it out?
Very simple Dude.
inside your _prepareCollection() method of your custom module grid
Load the product collection and select these two attribute... If there is a need to filter it by these two attributes then do it.

Adding additional information on product page in magento

I want to add information in the additional information tab of the product page, but can't figure out from where it picks the data.
Check out the product attributes in the backend. You can configure existing and/or new product attributes and make them (optionally) show up in this section. Make sure the attributes have "Visible on Product View Page on Front-end" set to Yes.
1)First create the attribute as per your requirement
2)Assign this to default attribute set then save.
3)go to attribute and make visible(from drop down) your recently created attribute.
4)fill some value in the attribute(you created) for your selected product .
5)Again go to the attributes select your attribute then select yes or no to " Visible on Product View Page on Front-end " and "Used in Product Listing" depending your need.
If you need more help please inform..

Resources