Hi,
Could you please check the following record?
Are you trying to add the tags in the following way?
Thank you!
Have a nice day!
I Tried following your guide and,if i click on the tag it doesnt work but,when i clicked the box near the tag name and hit apply it worked !
any ideas on how to easly add multiple tags at once?
thanks for the plugin it is a excellent tool
I Managed to reproduce the bug again
If i select all the photos in a gallery and apply bulk tags it works if i only select 1 page and apply bulk tags it fails as demonstrated in the video
http://recordit.co/MJ7h2nDvVe
Hi,
We need to have a closer look at the described issue.
Please contact our support team using the following email address [email protected]
Also, mention the URL of this forum topic in your message. We will provide a solution as soon as possible and share it here as well.
Thanks, have a nice day!
I Have updated wordpress to the newest release (4.9.0 to 4.9.8) and disabled all non-essential plugins to see if it was some kind of conflict,the bug still persists…
Gabriel
Hi,
We have replied to you via Email address. Could you please check and provide needed information for checking further the issue?
Thank you in advance!
Have a nice day!
I Have Replyied to the support ticket via email,if you need anything else
The issue has been fixed by the plugin support team by email !
Thank you !
Hi!
That’s wonderful, we are happy to know the problem is fixed on your website. Here’s the solution we’ve applied.
The following changes were made in photo-gallery/js/bwg.js file of the plugin:
1. They have edited spider_check_all_items function and replaced this line:
jQuery("#check_all_items").attr('checked', false);
with this code:
jQuery("#check_all_items").prop('checked', false);
Also, in the same function, the following line:
jQuery("#check_all_items").attr('checked', true);
was replaced by this:
jQuery("#check_all_items").prop('checked', true);
2. The team edited spider_check_all function and replaced this code:
jQuery(current).attr('checked')
by the following:
jQuery(current).is(':checked')
3. Again in photo-gallery/js/bwg.js file, line 281 was replaced by this code:
jQuery("#check_" + ids_array[i]).is(":checked")
Cheers!