Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 3,151 through 3,165 (of 3,958 total)
  • Author
    Posts
  • in reply to: Problem Showing if Multiple Categories Selected #4090
    Anh TranAnh Tran
    Keymaster

    Dear Matt,

    Glad that it works. Please don't hesitate to tell us if you have another problems.

    Best regards,

    Tan

    in reply to: Problem Showing if Multiple Categories Selected #4085
    Anh TranAnh Tran
    Keymaster

    Got it, my suggestion syntax is for exactly match when post category should be product and cannot belongs to another one. If you want to show your meta box when post categories is in product and others. You can use in operator:

    
    'visible' => ['slug:post_category', 'in', ['product']],
    

    Best regards,

    Tan

    in reply to: Meta Box extension updates and MainWP #4084
    Anh TranAnh Tran
    Keymaster

    I'm debugging :(. Another error appears and I have to fix it. I'm trying to do that as fast as possible.

    in reply to: Can't save with using conditional logic #4082
    Anh TranAnh Tran
    Keymaster

    Glad that you've fixed it. Awesome!

    in reply to: Settings Page Undefined Error #4078
    Anh TranAnh Tran
    Keymaster

    It's fine :). If you see any error, please just let me know.

    in reply to: Can't save with using conditional logic #4069
    Anh TranAnh Tran
    Keymaster

    Dear Yumiko,

    Thanks for reporting, I'll try to replicate the problem on my PC then give you an answer and update. It's hard to replicate the problem, it's better if you can give me your server logs file. Currently, you can try: deactivating other plugins (security plugins first if exists), and activate other themes.

    Best regards,

    Tan

    in reply to: File Type Upload Error #4064
    Anh TranAnh Tran
    Keymaster

    FYI, the new version is released and it would have the fix for this bug.

    in reply to: Adding post meta to revisions #4063
    Anh TranAnh Tran
    Keymaster

    We have a ticket on this but haven't made any progress. We will try to do this. Let's tracking on Github.

    Anh TranAnh Tran
    Keymaster

    Hi,

    If you put the page template in a subfolder page-templates, you need to use 'include' => 'page-templates/name.php' instead of just name.php.

    in reply to: Problem Showing if Multiple Categories Selected #4060
    Anh TranAnh Tran
    Keymaster

    Hi bro,

    Because you've purchased Developer Bundle. You can use MB Conditional Logic instead. It has more features for you:

    Instead of:

    
    'show' => ['category' => ['Product']]
    

    You can use:

    
    'visible' => ['slug:post_category', 'product']
    

    Documentation can be found here:
    https://metabox.io/docs/meta-box-conditional-logic/

    Best regards,

    Tan

    in reply to: Missing Export Option #4059
    Anh TranAnh Tran
    Keymaster

    Currently, you can use export in bottom dropdown, the top dropdown doesn't works and we'll fix this on the next release ๐Ÿ™‚

    in reply to: Cloneable group with WYSIWYG #4049
    Anh TranAnh Tran
    Keymaster

    Hi FED, the bug is complicated and I haven't found a good solution yet. I will let you know as soon as I find a way.

    Thanks
    Anh

    in reply to: Problem with metabox group #4042
    Anh TranAnh Tran
    Keymaster

    I've just fixed the bug and released new version. Please update and check it.

    Thanks
    Anh

    in reply to: Groups should be native functionality, not a premium extension #4040
    Anh TranAnh Tran
    Keymaster

    Yes, all of the methods above should work. The way we load Meta Box and extensions doesn't matter too much, because the Group extension is loaded on init hook and at that time Meta Box is already loaded.

    in reply to: Default values for cloned fields #4035
    Anh TranAnh Tran
    Keymaster

    You can set default values for cloned fields by assigning an array of values to std parameter.

    Assuming you have a cloned text field phones which store phone numbers. You can set default value like this:

    
    $default = array(
        '0123-456-789',
        '001-002-003',
    );
    
    // Then in your field
    array(
        'name'  => 'Phone numbers',
        'id'    => 'phones',
        'type'  => 'text',
        'clone' => true,
        'std'   => $default,
    )
Viewing 15 posts - 3,151 through 3,165 (of 3,958 total)