Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,136 through 3,150 (of 3,708 total)
  • Author
    Posts
  • in reply to: mb_settings_page_load?? #3699
    Anh TranAnh Tran
    Keymaster

    Sorry, that was a typo mistake. I've just updated the plugin with the fix. Please re-download it.

    Thanks
    Anh

    in reply to: Meta box for custom taxonomies not working #3698
    Anh TranAnh Tran
    Keymaster

    Hi @Unce,

    The custom fields for terms are displayed when you editing a term. Currently the plugin doesn't support show custom fields in the Add new page.

    in reply to: Activation Error #3688
    Anh TranAnh Tran
    Keymaster

    Just updated the extension with fix. Please download and try it.

    in reply to: Custom Taxonomy Content not Showing #3687
    Anh TranAnh Tran
    Keymaster

    Let me check that.

    in reply to: Activation Error #3685
    Anh TranAnh Tran
    Keymaster

    Are you using old version of the Meta Box plugin? This class is available since 4.8.0.

    in reply to: List all Meta Fields for current post #3684
    Anh TranAnh Tran
    Keymaster

    Just sent you an email 🙂

    in reply to: EDD Software Licensing within Tabs #3671
    Anh TranAnh Tran
    Keymaster

    Can you provide some details on that? I’m not clear about it.

    in reply to: List all Meta Fields for current post #3670
    Anh TranAnh Tran
    Keymaster

    You can use this snippet:

    $post_type = get_post_type();
    $meta = array(
        '' => 'Choose Meta Field',
    );
    $meta_boxes = RWMB_Core::get_meta_boxes();
    foreach ( $meta_boxes as $meta_box ) {
        if ( $post_type != $meta_box['post_types'] && ! in_array( $post_type, $meta_box['post_types'] ) ) {
            continue;
        }
        foreach ( $meta_box['fields'] as $field ) {
            if ( ! empty( $field['id'] ) ) {
                $meta[$field['id']] = $field['name'];
            }
        }
    }
    in reply to: Customizer #3669
    Anh TranAnh Tran
    Keymaster

    Email sent.

    in reply to: Customizer #3668
    Anh TranAnh Tran
    Keymaster

    I’m still working on the extension. It supports basic fields and have no fancy yet (like live refresh). I can send you the beta version for testing.

    in reply to: Previewing MetaBoxes #3655
    Anh TranAnh Tran
    Keymaster

    If you’re editing a published page and then click Preview then you can’t see the meta values unless you set “autosave” true for the meta box.

    The thing here is WordPress auto saves post title and post content so you can preview them while edit (there must be a “save” action so you actually see the changes) and by default, Meta Box turns the autosave = off so you don’t see it. Setting “autosave” true fixes the problem.

    in reply to: Error updating and install #3651
    Anh TranAnh Tran
    Keymaster

    I couldn’t find any bug with both plugins. They seem to work fine on my localhost. Do you have a test site that I can login to check?

    in reply to: [MB User Meta] Fatal Error #3646
    Anh TranAnh Tran
    Keymaster

    Just updated the plugin with the fix 🙂

    in reply to: [MB User Meta] Fatal Error #3645
    Anh TranAnh Tran
    Keymaster

    @paralexmedia: Thanks for your editing. I'm changing the visibility of Meta Box methods and this works on the dev version on Github. I will release Meta Box new version which is compatible with this soon.

    in reply to: Using MB Tabs with MB Groups #3640
    Anh TranAnh Tran
    Keymaster

    Hi Blaine,

    It looks like a kind of GUI builder for fields and tabs. Currently, there is no way to do that within the Tabs extension. However, you can try the MB Builder extension which helps you to create fields (and tabs) dynamically.

Viewing 15 posts - 3,136 through 3,150 (of 3,708 total)