Discount,Rating Filler navigation in magento - magento

I have requirement to display discount percentage,rating on navigation filler in magneto.
please give any idea or suggestion for this.
or please share link if have free magneto extension.
my requirement is like below image

Create an attribute discount of type dropdown. use the attribute in layred navigation filterable with results.
Create two options for the attribute 0-50& 50 & above.
And assign to relevant attribute set. And select the range on which particular products fall on editing/adding products.

Related

Magento 1.9 product custom options Input type mass update

I have magento 1.9 installed with more than 600 products. about 300 products has custom options set with input field drop down.
I want to change input type from drop down to check boxes for all 300 products.
I can only see option of uploading via csv with field _custom_options_type.
Can anyone suggest me how I can update input type efficiently.
Thanks
Checkbox input-type for product attribute are not set as a normal behaviour there is yes/no select for boolean attributes and multiselect for attribute with many values possible.
In case you speak about admin and you want to have a checkbox for an attribute with multiselect, you will have to develop it yourself (but I am sure you can find a module). The same for yes/no.
In case you speak about frontend, you can display multiselect as checkboxes or yes/no as a checkbox to tick with help of CSS and/or JS.
Feel free to precise your question to get more precise answer.

Magento set default associated product to display

I have a configurable product which have 2 associate products. I want to able to select, which one display by default in product page. How to do this?
you can achieve this by using below extension:
https://github.com/tzyganu/Switcher

Magento - Multiple values of the same attribute on a product

I would to have multiple values of the same attribute on a product in Magento.
E.g. I have a black-white blanket in my store. Customers should find this product when they select black, but also when they select white.
I saw there is an option called "Multiple Select" for admin input, but the option to use it for configurable products disappears.
So, is it possible for a product to have multiple values from the same attribute, but still use the attribute for configurable products?
I hope someone could help me!

How to remove information in Magento catalog, but only for specific product type

I am wondering how can I delete this two divs -
in Magento catalog, but only for specific product type. In short, I would like to have product type which would appear in catalog only with product-image and product-name, without - price, Out of stock, Add to Wishlist, Add to Compare.
It's possible to load different layout updates depending on loaded product type. You can see an example of how it's done in Magento for configurable products here: https://github.com/LokeyCoding/magento-mirror/blob/magento-1.7/app/design/frontend/base/default/layout/catalog.xml#L275-L287
It's possible because view action of product controller makes this to be executed: https://github.com/LokeyCoding/magento-mirror/blob/magento-1.7/app/code/core/Mage/Catalog/Helper/Product/View.php#L59-L60
You can change the design for any product from the admin.
You need to create a separate theme with a different product page which will have only the attributes you would like.
Then you can select the design for that specific product. Please see the screenshot, how you can change design for any product

make configurable product options independent on product view page --Magento

I am working on a Magento project and I need to know if there is a way to make a product's options independent to each other or unrequired. I need to use one of several at a time (I have 6 dropdowns).
I have tried add to cart by query string but all dropdown values were still required. I also tried to make all the options default, then modify the selected options in the observer, but I did not meet with success. See the screenshot below for more details.
Any help will be appreciated
Screenshot http://secure.justhost.com/~sharpwe1/img/imf.png
Configurable Products in Magneto are only parent products of Simple Products. Whatever you have as an attribute of a Configurable - a Simple Product has to be present for each. To do this out of the box in Magento, you should be looking into setting up a Simple Product with Custom Options.

Resources