Search found 5 matches

by danielb
Mon May 12, 2008 12:37 pm
Forum: International Questions and Topics
Topic: Currency formatting bug in email confirmation?
Replies: 1
Views: 10462

Currency formatting bug in email confirmation?

Hey. When the store is set to use another currency than USD, the email's from the checkout confirmation is still sent with USD formatting. Eg. $249.00 instead of Kr 249,00 (we use Norwegian Kroner - NOK - Kr in our store) Looks like the methods that's sending the comfirmation email don't check the s...
by danielb
Wed Apr 30, 2008 7:25 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Kitted Product Price Displays as $0.00
Replies: 12
Views: 6668

Re: Kitted Product Price Displays as $0.00

Great! now I really feel like this is the commerce solution i want to put my money on! :lol:
by danielb
Wed Apr 30, 2008 6:49 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Kitted Product Price Displays as $0.00
Replies: 12
Views: 6668

Re: Kitted Product Price Displays as $0.00

I've debated this with Able in the past. The issue isn't exclusive to kits - same thing happens with products that have variants/options assigned to them. No storefront software should ever show a visitor a $0.00 price for a real product. It only encourages an atmosphere of misrepresentation in an ...
by danielb
Wed Apr 30, 2008 4:28 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Kitted Product Price Displays as $0.00
Replies: 12
Views: 6668

Re: Kitted Product Price Displays as $0.00

As a quick fix for this, this should do it. in file \CorLib\Utility\ProductPrice.ascx.cs in method Page_Render( ... ) change this ProductCalculator pcalc = ProductCalculator.LoadForProduct(_Product.ProductId, 1, _OptionList, _SelectedKitProducts); if (!_Product.HidePrice) { //PRICE IS VISIBLE, NO PO...
by danielb
Tue Apr 29, 2008 5:31 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Kitted Product Price Displays as $0.00
Replies: 12
Views: 6668

Re:

In my opinion this is a bug. The parent kit item should show the minimum price of the kit. This should be an option at the very least. The way I worked around it was to add up all the default items in the kit and set the parent item to that price. Then I made any of the kit items that when select w...