I found his github repo, and it looks like he has made recent updates, but they just aren’t available in the WP Plugin repo.
https://github.com/kylephillips/favorites
You can try updated to that most current version and see if it fixes any issues.
Ben, Thanks very much for giving this a try at help and support. I’ll give this a try right away!
Unfortunately, that didn’t appear to do it. On my setup, the favorite/favorited buttons are stuck in the “Loading” state..
From Firebug and upon checking the un-minified version of simple-favorites.js, it seems to be related to binding events, and it appears it may start from here.
// Bind events, called in initialization
plugin.bindEvents = function(){
$(document).on('click', plugin.buttons, function(e){
e.preventDefault();
plugin.submitFavorite($(this));
});
$(document).on('click', plugin.clear_buttons, function(e){
e.preventDefault();
plugin.clearFavorites($(this));
});
}
My JS skills are minimal at best, so I would appreciate any help. Thanks.