Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 1,906 through 1,920 (of 3,702 total)
  • Author
    Posts
  • in reply to: Metaboxes not visible on Settings page #10817
    Anh TranAnh Tran
    Keymaster

    Please go to Dashboards -> Updates and check for updates. You'll see AIO available. Just update it as normal plugins.

    Regarding the settings pages, there's no menu item for it. The screenshot shows the Meta Box menu correctly.

    in reply to: โœ…Check if Email already exist #10816
    Anh TranAnh Tran
    Keymaster

    Hi,

    That action doesn't fire for login form, because the form doesn't need to create or update user info.

    The login form users WordPress's function wpsignon to log user in. And it auto checks the email address. I wonder the use case that you manually check for email exists. Is that really needed?

    in reply to: Metaboxes not visible on Settings page #10814
    Anh TranAnh Tran
    Keymaster

    Can you please try again? The update for AIO comes a little bit later.

    in reply to: โœ…Form Not Showing #10812
    Anh TranAnh Tran
    Keymaster

    Hello,

    Did you set the correct id attribute for the form shortcode?

    in reply to: MB Meta Term hide my posts meta fields #10811
    Anh TranAnh Tran
    Keymaster

    Hello,

    I've created a test using your code and here is the video: http://recordit.co/nGs41cchuS. It seems to work for me. Am I missing anything?

    in reply to: Metaboxes not visible on Settings page #10809
    Anh TranAnh Tran
    Keymaster

    Thanks a lot for your info. I've found the bug and updated the extension. Please update it to the latest version.

    in reply to: Metaboxes not visible on Settings page #10797
    Anh TranAnh Tran
    Keymaster

    Hi, I've just added your code of the settings page to my localhost and it shows in the Builder. Here is the screenshot:

    https://imgur.elightup.com/KKuYpfL.png

    Perhaps there's something else?

    in reply to: Metaboxes not visible on Settings page #10789
    Anh TranAnh Tran
    Keymaster

    Can you send me the code that registers settings pages? Is it wrapped inside any hook (like 'init')?

    in reply to: Metaboxes not visible on Settings page #10787
    Anh TranAnh Tran
    Keymaster

    I got it. Did you select settings page in the Settings tab of the Builder, like this?

    https://imgur.elightup.com/xWjA7rV.png

    in reply to: Term Meta breaking other custom fields #10782
    Anh TranAnh Tran
    Keymaster

    Hi lukeragno,

    I've tested your code and couldn't detect the problem. It works fine to me. I recorded the video here: http://recordit.co/MrzQxy3BD0

    PS: After debug Max's code, I found a problem is the custom post type was registered too early, before all the "init" hook, where Meta Box starts. So, that's might be the problem. I recommend checking the code again, make sure it looks like

    add_action( 'init', 'my_register_post_type' );

    in reply to: clolor picker field problem with front end forms #10781
    Anh TranAnh Tran
    Keymaster

    Hi,

    Thanks a lot for your comment! I've fixed the bug in the latest version. Please update.

    in reply to: Metaboxes not visible on Settings page #10780
    Anh TranAnh Tran
    Keymaster

    I'm confused about "regular site page". The plugins allows you to:

    • Create a settings page
    • Create meta boxes and fields for that settings page

    Both the steps requires you to put code within functions.php or plugin file. If you use MB Builder, then the Builder can help you do the 2nd step without copy and paste the code into functions.php file.

    in reply to: Metaboxes not visible on Settings page #10773
    Anh TranAnh Tran
    Keymaster

    Hi,

    The settings page must be created using the method the plugin provides. The settings pages that created using normal Settings API are not supported. Because we can't hook into those settings page and show custom fields there.

    Please follow this instruction to create settings pages. It's very similar to Settings API.

    in reply to: Metabox Height Not Expanding #10772
    Anh TranAnh Tran
    Keymaster

    Hi Thomas,

    I've just fixed it. Please try the latest version on Github.

    in reply to: โœ…Can't get Meta Box Custom Table to work #10771
    Anh TranAnh Tran
    Keymaster

    Hi kesit,

    You need to write custom code to move the data from custom fields to custom table. Here is a sample code:

    $post_id = 1;
    $fields = ['field_1', 'field_2'];
    $table = 'your_custom_table';
    
    $row = ['ID' => $post_id];
    foreach ( $fields as $field ) {
        $row[$field] = get_post_meta( $post_id, $field, true );
    }
    global $wpdb;
    $wpdb->insert( $table, $row );
Viewing 15 posts - 1,906 through 1,920 (of 3,702 total)