[Plugin: AddToAny: Share/Bookmark/Email Buttons] Settings does not save selected Standalone Services
-
I am unable to get the selected items in the Standalone Services list to save on my wordpress installation.
I have debugged this and know what the issue is. All code line numbers are in reference to version .9.9.9.4.
In the javascript on the wp-admin AddToAny settings screen (add-to-any.php:1193), the code to create the “A2A_SHARE_SAVE_active_services” input field assumes that the AddToAll form is going to be the first form on the page. In my case it is not.
Query('form:first').append('<input name="A2A_SHARE_SAVE_active_services[]" . . .
I’d recommend assigning an id to the form (add-to-any.php:928) and using that in the jQuery selector instead.
<form method="post" action="" id="add-to-any-settings-form"> jQuery("form.#add-to-any-settings-form".append(. . .);
Thanks for looking into this.
Brian
- The topic ‘[Plugin: AddToAny: Share/Bookmark/Email Buttons] Settings does not save selected Standalone Services’ is closed to new replies.