0

I have a store which has a configurable product. Unfortunately when a color options is selected, the prices displays as 0.00$.

You can see here:

http://beautysense.ca/brands/jane-iredale/jane-iredale-lips/jane-iredale-puregloss-for-lips-1181.html

I assume php is calling the wrong price from the database, but any other insight would be greatly appreciated.

FYI the price displays correctly when the item has been added to the cart.

4

1 回答 1

0

您有 3 个阻止可配置产品 JS 正常运行的 JavaScript 错误。

var j2t_point_default_point_unit_base = "<span class="price">$0.05</span>";

上述代码中的引号无效。

checkJ2tCloneText();

调用时未定义上述函数。

Uncaught TypeError: Object [object Object] has no method 'jqTransform'

jQuery 插件未加载或无法访问。

如果您更正这些 Javascript 错误,您的价格将正确显示。

于 2013-07-25T01:20:00.753 回答