http://wordpress.org/extend/plugins/bp-gtm-system/
This plugin has the following JavaScript error in its global.js file:
Uncaught TypeError: Object [object Object] has no method 'autoCompleteResps'
This error prevents the images from displaying. They appear to be stuck “thinking”.
A possible solution would to be to edit the global.js file found here:
../wp-content/plugins/bp-gtm-system/_inc
Look for line 237:
var resps = jQuery("ul.first").autoCompleteResps({type: 'resps'}); |
Change it to this:
if (jQuery.fn.autoCompleteResps) { var resps = jQuery("ul.first").autoCompleteResps({type: 'resps'}); } |
Now, do the same for line 243:
var tags = jQuery("ul.first").autoCompleteTags({type: 'tags'}); |
Change it to this:
if (jQuery.fn.autoCompleteResps) { var tags = jQuery("ul.first").autoCompleteTags({type: 'tags'}); } |
This is completely untested, so try at your own risk.
NOTE: this FAQ was written based on BP GTM System 1.0.1.