Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,136 through 3,150 (of 3,702 total)
  • Author
    Posts
  • 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.

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

    Hi Blaine,

    Could you please give more details on "add tabs using the groups functionality"? I'm not very clear about that.

    in reply to: Problem with the editor (wysiwyg) #3632
    Anh TranAnh Tran
    Keymaster

    Hi,

    The editor is still buggy when sorting. The WordPress JavaScript doesn't allow to change the DOM. We tried to reinit but didn't succeed for now. We'll check that later.

    The fix for the remove button will be addressed soon 🙂

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

    The meta values are saved when you save the post as a draft. So they should be visible in the front end. How did you check that?

    in reply to: Loading within plugin #3624
    Anh TranAnh Tran
    Keymaster

    I have told @tannguyen, the developer of Conditional Logic to check it carefully. Please wait.

    in reply to: Loading within plugin #3621
    Anh TranAnh Tran
    Keymaster

    Please try with require_once. Also which class the error says already declared?

    in reply to: Loading within plugin #3615
    Anh TranAnh Tran
    Keymaster

    Do you include the conditional logic multiple times in plugins?

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