• Upon page load, the “loading …” button is what keeps showing instead of showing “Favorites” or “Favorited” (state) buttons…

    Any help would be appreciated. Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    Thread Starter atomicnicholas

    (@atomicnicholas)

    Ben, Thanks very much for giving this a try at help and support. I’ll give this a try right away!

    Thread Starter atomicnicholas

    (@atomicnicholas)

    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.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Perpetual Loading ..’ is closed to new replies.