Support Forum Β» User Profile

Forum Replies Created

Viewing 15 posts - 2,461 through 2,475 (of 3,707 total)
  • Author
    Posts
  • in reply to: about metaboxbuilder update #8162
    Anh TranAnh Tran
    Keymaster

    Hi,

    We’re working on that. It will be released latest early next week. Please wait.

    Thanks for understanding.

    in reply to: βœ…File Upload field #8156
    Anh TranAnh Tran
    Keymaster

    Hi,

    Sorry to reply late. The file upload field actually doesn't open the Media Library for selecting files (you can do that with file advanced field). I should have corrected the documentation πŸ™

    in reply to: create a wp gallery #8153
    Anh TranAnh Tran
    Keymaster

    Hi,

    Can you try this code:

    $images = rwmb_meta( 'gallery' );
    $image_ids = array_keys( $images );
    $shortcode = '[' . 'gallery ids="' . implode(',', $image_ids) . '"]';
    
    echo do_shortcode( $shortcode );
    in reply to: Problem when cloning GROUP with IMAGE_ADVANCED #8144
    Anh TranAnh Tran
    Keymaster

    Hi,

    I've fixed it on Github. Can you please try that?

    in reply to: βœ…Show A Specific Tab When A Feature Image is Added #8142
    Anh TranAnh Tran
    Keymaster

    Hi Thomas,

    Your case is a combination of the featured image rule with this tutorial.

    I added the solution to the library. Please take a look.

    (Note: I removed all textdomain and prefix to help others see the code clear).

    in reply to: Issue with complex form and columns #8141
    Anh TranAnh Tran
    Keymaster

    I've just fixed this bug and tested with your code in version 1.2.1. Please update!

    in reply to: βœ…Show A Specific Tab When A Feature Image is Added #8130
    Anh TranAnh Tran
    Keymaster

    Hi Thomas, I've just updated the plugin, adding support for Featured Image. Please see the documentation for usage.

    Cheers

    in reply to: Issue with complex form and columns #8124
    Anh TranAnh Tran
    Keymaster

    Thanks a lot for your code. I will look at that and fix as soon as I can.

    in reply to: showing multiple metaboxes on front end forms #8123
    Anh TranAnh Tran
    Keymaster

    Unfortunately, it's not possible for now. But that's a good idea when combining meta box ids into 1 parameter. I'll see if I can implement that.

    in reply to: βœ…Changed plugin slug, wtf? #8122
    Anh TranAnh Tran
    Keymaster

    Hi,

    We've never changed plugin slug. It's always meta-box-group. I think you or someone made a typo mistake to tmeta-box-group. There's no reason for a "t" here.

    in reply to: βœ…Show A Specific Tab When A Feature Image is Added #8110
    Anh TranAnh Tran
    Keymaster

    Hi Thomas,

    Let me see if I can find a workaround for this.

    in reply to: βœ…Conditional Login Breaks with clonable groups #8109
    Anh TranAnh Tran
    Keymaster

    Hi Ahmed,

    I have fixed the 1st issue with this commit. Can you please try it?

    Regarding the 2nd issue with the remove clone button, it's actually a bug in your code. Please just close the </b> tag properly and the bug will go away.

    Let me know if you still see any bug.

    in reply to: Can't display map added through clonable group #8108
    Anh TranAnh Tran
    Keymaster

    Hi,

    Thanks for a great question. There was no such functions. I've just added it on Github and added example in the documentation. Please update the code for Meta Box from Github and follow the documentation. I will release a new version soon.

    in reply to: Field Order #8107
    Anh TranAnh Tran
    Keymaster

    Hi Thomas,

    I got it. The easiest way to order those fields is just order the code for them. The code that write first will display first.

    Let's say you want to move "Hide Post/Page Theme Header" to the top of the list, then just move this code to the top

    if ( isset( $meta_box['id'] ) && 'totalpress-post-page-options' == $meta_box['id'] ) {
        $meta_boxes[$tp_primo_mb]['fields'][] = array(
            'id' => 'tp_primo_page_options_hide_header',
            'type' => 'checkbox',
            'desc' => esc_html__('Hide Post/Page Theme Header','tp-primo'),
            'tab' => 'totalpress_hide_post_page_elements',
        );
        // Code for other checkboxes goes here
    }
    Anh TranAnh Tran
    Keymaster

    We don't have such function yet. Please use $wpdb->insert. It's short and fast.

Viewing 15 posts - 2,461 through 2,475 (of 3,707 total)