Support Forum ยป User Profile

Forum Replies Created

Viewing 3 posts - 46 through 48 (of 48 total)
  • Author
    Posts
  • in reply to: โœ…[BUG] No Feedback Given if Address not Found! #14599
    brandonjpbrandonjp
    Participant

    I agree. I'm actually hiding the "Find Address" button because it just confuses my clients.

    brandonjpbrandonjp
    Participant

    I found temporary workaround & code fixes for this. (As of 14 May 2019)

    WORKAROUND:
    If you click on the 'Code' tab first, you can then click 'Settings' and it will load.

    CODE FIX:
    For a more functional fix, you can edit the plugin on your server. Looks like the builder.js file in the MB Builder plugin is attempting to instantiate a new Clipboard object using Clipboard instead of ClipboardJS -- If you wish to fix it for now, you can edit the builder.js file as follows...

    Go to this page in your WP plugin editor:
    http://yourdomain.com/wp-admin/plugin-editor.php?file=meta-box-builder%2Fassets%2Fjs%2Fbuilder.js&plugin=meta-box-builder%2Fmeta-box-builder.php

    On line 550 you should see:
    clipboard = new Clipboard( '.mbb-button--copy', {

    Change new Clipboard to new ClipboardJS

    So the full new line 550 would read:
    clipboard = new ClipboardJS( '.mbb-button--copy', {

    Save the change, then go back to the Field Group editor and try it out. (You might need to close your old browser tab/window and re-open the page, and/or refresh your browser 5 million times for it to load the the updated builder.js file)

    brandonjpbrandonjp
    Participant

    I'm having this same issue. Chrome console shows:
    Chrome console js error

    Here's a screencast of the Settings tab not loading:
    Settings tab not loading when editing field group

Viewing 3 posts - 46 through 48 (of 48 total)