Price Shows As NaN With Dynamic Price Update Enabled

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 年 前
I have dynamic price update enabled and it works fine for products with multiple attributes, but for products with 1 attribute and the price is 0 for the attribute it changes the price to NaN

Anyone else experienced this and knows a fix?  Save me an hour or so if you could share?
13 年 前
Bit of a hack, but on the last bit of the JavaScript in the productattributes.ascx module I changed the following to fix it.


        if(res != 'NaN')
        {
            $(".<%=PriceVarClass%>").text(res);
        }
13 年 前
Thanks for info. Here is a changeset with a fix http://nopcommerce.codeplex.com/SourceControl/changeset/changes/57283
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.