I am struggeling with Magento custom options.
In Magento you can add custom options at a Simple product. With this option an attribute like "color" can be added. Before the customer want to add the product to his cart, he first select the custom option "color". The price can change at every color.
But the options are very individual. I want the options are dependent on each other.
Something like this:
lenght = 100cm -> wood type: 1 = 120 euro total-> color: green = 140 euro total
-> color: grey = 150 euro total
wood type: 2 = 130 euro total-> color: green = 150 euro total
-> color: grey = 160 euro total
lengt = 120cm -> wood type 1: = 130 euro total-> color: green = 160 euro total
-> color: grey = 170 euro total
wood type 2: = 140 euro total-> color: green = 180 euro total
-> color: grey = 190 euro total
A store that I know that use it is:
http://www.zelfbouwmeubels.nl/tafels/eettafel/
And then select "SAMENSTELLEN".
Do i need an plugin for it or is there an default functionality in Magento.
Consider using a configurable product instead of a simple product, and download a module that will use the selected simple product's pricing. Then you can individually manage each length/wood-type/colour option as an individual SKU and charge different prices for each.
Configurable products:
http://www.magentocommerce.com/knowledge-base/entry/tutorial-creating-a-configurable-product
Module to do what you want:
http://www.magentocommerce.com/magento-connect/Matt+Dean/extension/596/simple-configurable-products
Related
Imagine in ecommerce attributes and values. Ex: size (S,M,L), weight (100,200), color (red,green,blue).
Each of variations has own price:
S, 100, red : 32$
S, 200, red : 18$
S, 100, green : 25$
etc...
Administrator has possibility CRUD attributes and values in CMS. Administrator can select created attributes and values and insert price.
Do you know the way to save this prices in DB?
How could I display more than 1 gauge chart in a html page. But each limit of gauge chart is different.
Example
(Max value) New York max is 1000, Boston max is 1200, Miami max is 1333
(Red region) New York redFrom is 0, redTo is 450,
Boston redFrom is 0, redTo is 600,
Miami redFrom is 0, redTo is 500
How could I modify this code or some useful method?
library(googleVis)
Gauge <- gvisGauge(CityPopularity,
options=list(min=0,
max=800, greenFrom=500,
greenTo=800, yellowFrom=300, yellowTo=500,
redFrom=0,
redTo=300, width=400, height=300))
plot(Gauge)
Image
I am trying to calculate total price of any configurable product in magento 2,and I am struggling with it.
Suppose I have two dropdown attribute as following,
1. Paper size
Option Price
A4 1$
A3 2$
2. Color option
Option Price
black & white 1$
colored 2$
Result would have been something like:
If someone selected,
paper size = A4
color option = black & white
total price = 1+1 = 2$
If someone selected,
paper size = A4
color option = colored
total price = 1+2 = 3$
lly,if,
paper size = A3
color option = colored
total price = 2+2 = 4$
But the total price looks something different than i have expected. And there would be more dropdown attribute like this.
Did i make something wrong ? Is there any better way to do it.
Good day !
You can use Bundle product for your requirement.
Steps are:
1. Create a new bundle product
2. select ship bundle item option "together"
3. click "create new option" then "add products"
4. select the products you want to add to the bundle
5. save the product
I have a bar chart in SSRS that has one category group and no series groups. What I would like to know is if there is any way I can have each category show up as a different color, rather than all of them being a single color like SSRS wants to do?
The only way I know of to do this is to hard code the colors for each category in the Values' Properties -> Fill tab -> Color expression:
=IIF(Fields!DISPUTE_TYPE.Value = "Duplicate", "Red",
IIF(Fields!DISPUTE_TYPE.Value = "Eligibility", "Orange",
IIF(Fields!DISPUTE_TYPE.Value = "Corrected billing", "Green",
IIF(Fields!DISPUTE_TYPE.Value = "Additional information - Records", "Blue", "Yellow"))))
The downside is that you have to account for all values else they'll use the last "default" value (yellow in this code).
You could number each type in your query and use that number in a formula to create colors.
I have two attributes in my Admin: Color and Size.
This attributes haves this configuration:
Scope: global
Catalog input type: Drop down
Apply To: all
Use in layered navigation: Filterable with results
And I have configurable products that haves simple products. For example:
CONFIGURABLE: MY T-SHIRT
SIMPLE 1: MY T-SHIRT with Color = White and Size = L
SIMPLE 2: MY T-SHIRT with Color = Black and Size = L
CONFIGURABLE: MY OTHER T-SHIRT
SIMPLE 1: MY OTHER T-SHIRT with Color = White and Size = S
SIMPLE 2: MY OTHER T-SHIRT with Color = Black and Size = M
But I cant't see filter by "Color" or "Size" in layered navigation. I just can filter by price and subcategories.
Why are those attributes not appearing in my layered navigation?
Could possibly be one of these causing the problem:
The category is not set to be anchored. Go to the category in the admin area and go to the 'Display Settings' tab. Make sure that the 'Is Anchor' option is set to yes.
The attributes are not in the correct attribute set for the products in the category you are viewing
The products in the category do not have values for those attributes