hashtoken
Forum Replies Created
-
Perfect. Thank you TC.K
I just noticed 5 other uses of .live() used in “admin/scripts/admin_awqsfjs.js” that I thought I’d also point out…
$('.closex').live('click', function() {... $('.addTaxo').live('click',function() {... $('.addCmf').live('click',function() {... $('.genv').live('click',function() {... $('.remove_row').live('click',function(e) {
would be
$(document).on('click', '.closex', function(e) {... $(document).on('click', '.addTaxo', function(e) {... $(document).on('click', '.addCmf', function(e) {... $(document).on('click', '.genv', function(e) {... $(document).on('click', '.remove_row', function(e) {...
Forum: Plugins
In reply to: [Image Widget] [Plugin: Image Widget] Broken in WordPress 3.3w00t! Thanks a lot Matt. Again, thanks for the great plugin.
Forum: Plugins
In reply to: [Image Widget] [Plugin: Image Widget] Broken in WordPress 3.3I agree with jzimmer76. I’ve been using the Image Widget (nice plugin BTW) with WP v3.2.1 without problem.
I upgraded to WP v3.3 today. The Image Widgets that were already setup prior to updating still work though the [Change Image] button is no longer functional. When adding new widgets the [Add Image] button does not seem to work (which is kind of a problem ??
Everything I’ve got is up-to-date. I’ve cleared my cache as you’d suggested. I’ve disabled all other plugins to test for conflicts, but I still can’t get Image Widget (v3.2.9) to work with w/ WP 3.3.
I assume this is related to the changes made to the Media Uploader in v3.3.
…oh, and I just checked for JS errors and I noticed on line 95 (image-widget.js):
tb_show("Add an Image", event.target.href, false);
the event object you’re using is namedev
notevent
.
After changingevent.target.href
toev.target.href
the plugin works again. ??