• Plugin Author Mickey Kay

    (@mcguive7)


    Hi all ????. As some of you may remember, a long while back I asked for your help testing a version of Better Font Awesome that supported v5 icons, however some breaking changes to the API combined with my limited bandwidth meant that those updates never got finalized.

    Fortunately, I’ve been able to make a major update that I think solves all the previously-encountered issues. Thanks so much for your patience along the way, I really do appreciate it.

    And now, I humbly ask for your testing help once again. You can read all the details about the update, testing instructions, and everything else in my blog post.

    Thanks so much, and please let me know if you have any questions.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Its working well for me. Thanks!

    After upgrading to WP 5.6, the plugin stopped working. Plugin wouldn’t insert the shortcode via the iconpicker. The error via the console window was pointing toward iconpickerItem.context not having a value. A rather simple fix that worked for us.

    File old version: better-font-awesome/vendor/mickey-kay/better-font-awesome-library/js/admin.js
    File beta version: better-font-awesome-2.0.0-beta4/vendor/mickey-kay/better-font-awesome-library/js/admin.js

    At or around line 41 on the old version & line 61 on the beta version, replace:

    		// Set up icon insertion functionality.
    		$( document ).on( 'iconpickerSelect', function( e ) {
    			var icon_title = e.iconpickerItem.context.title.replace( '.', '' );

    with:

    		// Set up icon insertion functionality.
    		$( document ).on( 'iconpickerSelected', function( e ) {
    			var icon_title = e.iconpickerItem.title.replace( '.', '' );

    Hope to see this continue to be developed. Thanks for your hard work!

    • This reply was modified 3 years, 10 months ago by irocwebs.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘BFA 2 beta ready for testing. . . again!’ is closed to new replies.