I want to create custom category attributes dynamically in admin.
how can I create custom category attributes?
Please suggest me proper solution to resolve this issue.
I suggest you to go through with this nice article Adding new category attribute in Magento
hope it will help you.
Related
One of my client want to have this kind of custom attributes in magneto, i tried making attributes and all, but can't get succeed, can anyone here guide me on making these ? do i have make attribute sets or attributes or i have to code custom ?
magento
In default Magento you can have some thing like pic attached.. please view if this solve your problem ?
Hi I created a new theme and created a .phtml for category view.
/myTheme/template/catalog/category/view.phtml
I also set the category on Magento Back-end Manage Products to use this theme.
However on my category page. It is still blank.
I would appreciate any help on what I'm doing wrong. Thanks in advance.
You will set your theme for your category in Manage Category not Manage Product
To change Product View design you need to modify catalog/product/view.phtml
I want to create dynamic fields using custom module in admin panel in magento.
It must be like custom options which is under product section.
Somebody give me an idea.
Do you search for something like this?
I'm new to magento. I need to add suppliers along with our products and the supplier information should also be editable. Please suggest me how can i do this. I'm using Magento 1.7
Thanks in advance.
You will need to install an extension for that. I search for some and I just found this: Suppliers on Magento
You will have to send him a private message to know it ^^
By default magento not provide this functionality, but still you can do this using magento attribute.
Create one attribute "supplier or something" and assigned this newly created attribute to Attribute Set of magento, now this newly created attribute is display in your product edit page.
If you are neu to magento this link might be useful to you How to create attribute?
I am new in magento. I want to create a custom registration module for seller in magento 1.5 or 1.6. There are needed two registration like one is general user, another seller. I don't know how magento's default registration module is built. I also don't know how to set up and how to connect between the form and the table like 'customer_entity_varchar' and other table.I think it follows MVC pattern like Joomla And also how to call the function from controller to model for writing "INSERT" sql query. If any one knows about it , please, guide me with giving links or doc.
Thank you.
You need to learn about creating a Magento Module.
Create a Magento Module Basics in Magento Module Development
Then you going to create an own registration controller for sellers.
Extend the customer entity by an attribute saying the customer status (seller|general) or use the Customer Groups Adding Attributes to Customers Entity (see for additional informations About EAV Attributes)
add custom attributes to sellers like in step 3.
I hope could help you!