Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 2,386 through 2,400 (of 3,707 total)
  • Author
    Posts
  • in reply to: Refund please #8509
    Anh TranAnh Tran
    Keymaster

    Hello,

    First of all, thank you for trying Meta Box. I'm sorry that you had difficulties using it. Can you please clarify your concerns so that I can help you more closely? For example: what fields do you want to create, with what conditions, or which part of the documentation is vague? I will try my best to help you.

    I see you bought only the Builder extension. There are some features such as conditional display meta boxes for a specific page template or display it for terms, and they need some other extensions to work. Besides, the approach in the Builder extension is somewhat different from ACF, so maybe something is not the same.

    I hope you can give us the chance to help you.

    Thank you.

    in reply to: multiple metabox template #8494
    Anh TranAnh Tran
    Keymaster

    I guess we have some misconception about "template". The template that plugin provides is the "text" version of the meta box settings, which is different from the page template that you imagine in the frontend. Am I correct?

    in reply to: Conditional logic not working with clones in groups #8488
    Anh TranAnh Tran
    Keymaster

    Oh, I see. My previous reply was for another problem (show/hide the image/video field when selecting an option). I'll check this bug and reply soon.

    in reply to: multiple metabox template #8487
    Anh TranAnh Tran
    Keymaster

    Hello,

    Yes, you can. Just create different meta boxes for different pages. You might want to use the MB Include Exclude to show specific meta boxes for a specific page. This extension works well with the MB Template extension.

    in reply to: Image Upload CSS Bug #8482
    Anh TranAnh Tran
    Keymaster

    Hello,

    Your question is about the Frontend Submission extension, so I moved it to the corresponding forum.

    Regarding the HTML markup of uploaded images, we mimic the markup in the Media Library in the admin area, which looks like this:

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

    Although there are some redundant div, it doesn't affect your style very much. However, you still need to add some CSS to make it looks seamless with your theme.

    in reply to: Sort sub field based on sub field value #8481
    Anh TranAnh Tran
    Keymaster

    Please check the field ID in the code. I didn't know which $prefix you used, so I use football_. Not sure if that's right.

    Anyway, do not just copy and paste the code 😉

    in reply to: Php Error conflicts with Tribulant Newsletter Plugin #8480
    Anh TranAnh Tran
    Keymaster

    No problem. New version with hot fix released.

    in reply to: Conditional Logic not hidden in collapsible group. #8479
    Anh TranAnh Tran
    Keymaster

    Hi, I've just tested the code. Sometimes the bug occurs, sometimes doesn't. I'll keep tracking on that.

    in reply to: Conditional logic not working with clones in groups #8478
    Anh TranAnh Tran
    Keymaster

    Hi,

    I've just checked your code and found that the problem is the ID of the radio field, which is type. As this is the radio field, there are actually 2 inputs with the same name. The JavaScript tries to *guess* the field using this selector [name*="type"]. It's ambiguous, and actually it returns *another WordPress field*, which is the post_type (a hidden input).

    I'd suggest using prefix for your field's ID (as stated in the documentation). It's a good way to keep the field ID/name unique, and thus make the selector works. I've tried changing the ID from type to type123 and it works.

    Please try and let me know how it goes.

    in reply to: Visibility functionality broken #8477
    Anh TranAnh Tran
    Keymaster

    Sorry guys, I've fixed the plugin but forgot to update the version on metabox.io, so the Updater doesn't work. Please try it again, it should be ok now.

    in reply to: Conditional Logic not hidden in collapsible group. #8454
    Anh TranAnh Tran
    Keymaster

    Hello, can you describe the steps you get the bugs 2 and 3?

    Anh TranAnh Tran
    Keymaster

    Hi John,

    The problem with the Updater is fixed. It's in the metabox.io system.

    Regarding the stuffs in the admin list, yes, those are suggested. We also have Admin Columns plugin and I'll think a best way to do that.

    in reply to: Sort sub field based on sub field value #8451
    Anh TranAnh Tran
    Keymaster

    Yes, you can. After getting group value, you can sort sub-groups using a custom function, like this:

    $group = get_post_meta( get_the_ID(), 'football_league_table_option', true );
    usort( $group, function ( $a, $b ) {
        $score_a = $a['football_team_win_stat'];
        $score_b = $b['football_team_win_stat'];
        if ( $score_a == $score_b ) {
            return 0;
        }
        return ( $score_a > $score_b ) ? - 1 : 1;
    } );
    $counter = 0;
    // other code
    in reply to: Drag and drop reordering will be hidden the content #8450
    Anh TranAnh Tran
    Keymaster

    Hello, what content did you mean? Is it hidden when cloning or after cloning? Can you take a screenshot?

    in reply to: post_id in hook rwmb_frontend_after_process is missing #8434
    Anh TranAnh Tran
    Keymaster

    Hello, I've just added submitted post ID to the $config variable. Please update the plugin.

Viewing 15 posts - 2,386 through 2,400 (of 3,707 total)