wpsc购买按钮在IE中的结账页面上不起作用


wpsc purchase button not working on checkout page in IE

不确定从哪里开始,该网站在除Internet Explorer 之外的所有浏览器中都能正常工作

这是URLhttps://bonaccord.co.nz/shop/checkout/

我一直在到处寻找答案,但还没有找到解决方案,大多数论坛都没有答案。

点击按钮时似乎什么都不做?我不确定为什么会这样,因为我有另一个网站,有完全相同的按钮,确实工作。

工作购买按钮的URLhttp://www.odarid.co.nz/dev/checkout/

我认为这可能与最近安装的SSL有关,但当禁用该按钮时,仍然无法工作

此外,当在IE中使用开发人员工具时,我会收到以下消息

对象不支持此属性或方法

它所指的代码是

jQuery("form.product_form").livequery(function(){
    product_id = jQuery('input[name="product_id"]',this).val();
    image_element_id = 'product_image_'+product_id;
    jQuery("#"+image_element_id).data("product_id", product_id);
    parent_container = jQuery(this).parents('div.product_view_'+product_id);
    jQuery("div.item_no_image", parent_container).data("product_id", product_id);
});

然后我试着禁用我写的脚本,看看它们是否导致了wp电子商务js的问题,但仍然遇到了同样的问题。。。

最后,我将wpsc-shopping_cart_page.php重新复制到我的主题中,并注意到它与我最初的wpsc-shop不同。

看起来在更新wpsc插件后,一些模板文件发生了变化,所以我不得不重新设计新模板的样式。