Configurable Products Pricing: "Starting At" $
CompletedBundled products show price as "Starting at $xx" based on the lowest priced SKU. This needs to an option for configurable products as well.
Right now I have configurable products whose variations range in price from $5 to $20. If I leave the base price of the configurable product as $0 the customer thinks something is broken (but this is currently the best option). If I set the default price as the lowest SKU price, the customer sees the price change from $5 to $20 when they select one of the more expensive variants and think I'm trying to mislead them.
The only sensible solution is to display the price as "Starting at: $(Lowest SKU Price)" just like it works in bundled products.
This is how it looks for Bundled and is exactly what I need for Configurable:
-
Thirding this.
You can use a CSS hack on the Category Pages which helps a bit. (not that this is the ultimate answer)#pix-fe .zoey-product-info .price-box .price::before {
content: "From ";
font-family: 'Kameron'; /* If required otherwise delete */
font-size: 15px; /* If required otherwise delete */
text-transform: lowercase; /* If required otherwise delete */
}You can't really use it on the PLP itself as once the price changes to the correct one the 'From' is irrelevant: (what happends on bundled? Does 'Starting at' dissapear once the user selects an option?)
Please sign in to leave a comment.
Comments
2 comments