When I try to insert image to post, there is a Javacript error:
Erreur : uncaught exception: Syntax error, unrecognized expression: [@name='photo_id']
Best regards,
Sylvain
When I try to insert image to post, there is a Javacript error:
Erreur : uncaught exception: Syntax error, unrecognized expression: [@name='photo_id']
Best regards,
Sylvain
Hi Sylvian,
if you are using the latest code from http://wordpress.org/extend/plugins/wordpress-flickr-manager/ then you may want to see these sites:
http://www.workflowfaq.com/wordpress-flickr-manager-changes-for-2-9
which basically tell you that you need to remove the "@" symbol since jQuery doesn't support that anymore. So you have to find where your you have:
[@name='photo_id']
and change it to:
[name='photo_id']
This topic has been closed to new replies.