 ParanoidSardine
|
WordPress 3.2 updates the jQuery library that ships with WordPress. There are a few changes to this version of jQuery that will likely cause major problems for some WordPress plugins. WPEC has been bitten by this bug. In particular, there is an issue with product images displaying with Thickbox using WP 3.2. Fortunately the fix is quite simple:
1) Open wpsc-core/js/thickbox.js
2) Find
var imageGroup = jQuery("a[rel="+rel+"]").get();
3) Replace With
var imageGroup = jQuery('a[rel="'+rel+'"]').get();
|
 geforcetech
|
Didn’t fix mine. Still won’t pull up gallery images.
|
 Mav3000
Contributor
|
I have the same problem and the above fix has not solved the problem for me.
|
 vark
Resident Expert Trusted
|
Hi Mav,
Try changing to colorbox in settings/store/presentation as an expedient solution…
|
 Mav3000
Contributor
|
I’ve solved this problem on my theme – my issue was that I had included code in my function.php file that disabled the WPEC JavaScript and CSS.
Disabling the JavaScript not only stopped ThickBox from working, but also the ‘Updating Cart’ loading animation issue I’ve mentioned elsewhere.
|