Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 3,958 total)
  • Author
    Posts
  • in reply to: Problem with saving #47076
    Anh TranAnh Tran
    Keymaster

    Dear Hazmi,

    While waiting for the original update, can you please try replacing meta-box-group/group.js with this file?

    https://gist.github.com/tanftw/405e373c4cd388f2f3f999fac2953501

    Cheers!

    in reply to: Problem with saving #47034
    Anh TranAnh Tran
    Keymaster

    Dear Hazmi, I have fixed this issue, need to test today and you will get an update shortly.

    Anh TranAnh Tran
    Keymaster

    Hi pixluser,

    This feature is done and will be included in the next version of MB Frontend Submission.

    in reply to: Callback / Filter for MB Group Title? #46890
    Anh TranAnh Tran
    Keymaster

    Hi Bomes,

    The hook for group title will be added in the next version of Group. Once it's done, you can use the filter like this:

    jQuery( function() {
        // Change "myVendor/myPlugin" to your unique namespace
        rwmb.hooks.addFilter( 'group.title', 'myVendor/myPlugin', function( title ) {
            // Change the title and return the value here.
            return title + ' Some random string';
        } );
    } );
    Anh TranAnh Tran
    Keymaster

    Hi Codog,

    This improvement is done and will be available in the next version.

    in reply to: oEmbed Not Available - Get URL? #46869
    Anh TranAnh Tran
    Keymaster

    This is done and will available in the next version.

    in reply to: WYSIWYG #46616
    Anh TranAnh Tran
    Keymaster

    Hi Rebecca and Duplo,

    This is fixed in this pull request and will be available in the next version.

    in reply to: WYSIWYG #46572
    Anh TranAnh Tran
    Keymaster

    Dear Rebecca,

    I have checked the issue and will release a patch for it soon, while you are waiting for update, can you please set clone empty start = true for the group or the wysiwyg field?

    https://docs.metabox.io/cloning-fields/#making-a-field-cloneable

    Cheers!

    in reply to: Pattern attribute sanitization may break regex #46538
    Anh TranAnh Tran
    Keymaster

    Hi Jackky,

    After checking this issue, I found that it's probably the browser issue. The pattern regex is outputted correctly in the input, but the browser displays it as rendered entities.

    When you view the source code of the page, you'll see the pattern attribute is outputted correctly. But when you *inspect* the input with the browser inspector, it will shows rendered entities. So, it seems to be an issue with viewing in the browser instead of a technical issue, which probably can't be fixed.

    I created a demo with pure HTML for you to check here.

    in reply to: Conditional logic using switch stopped working #46409
    Anh TranAnh Tran
    Keymaster

    Hi RBD, can you please share your meta box code (JSON or PHP) so I can replicate it?

    Cheers!

    Anh TranAnh Tran
    Keymaster

    Hi justdoit123,

    We have fixed the issue in the latest version, please update Meta Box and the MB Conditional Logic plugins.

    Also, please use different syntax for your conditional logic,

    Your current logic:

    
    "when": [
        [
            "text_1",
            "not contains",
            ""
        ]
    ],
    

    Please change to:

    
    "when": [
        [
            "text_1",
            "!=",
            ""
        ]
    ],
    

    Because currently, a text always contains empty string so your logic always falsy, you you just need to check if text is not empty.

    Cheers!

    Anh TranAnh Tran
    Keymaster

    Hi guys,

    This feature was implemented in the plugin. Please follow the docs on using it.

    in reply to: Removing last cloneable group #46174
    Anh TranAnh Tran
    Keymaster

    It's done and will be released in the next version of Meta Box.

    in reply to: MENU POSITION just doesn't work... #46058
    Anh TranAnh Tran
    Keymaster

    Hi AnLip,

    After debugging, we found the bug and fixed it. This fix will be available in the next version.

    FYI: technically, it's kind of an edge case with Bricks. Bricks register a top-level menu with position = 2, which is the same as Dashboard. In this case, WordPress will modify this value to a number like 2.12345, e.g. a float number. In Meta Box, we use integers for menu positions as WordPress recommends, but it won't work in this case for Bricks. So, in the update, we allow to use float numbers for menu position, and filter the menu to force WordPress to accept them (cause by default WordPress doesn't accept menu position = float for custom post types).

    in reply to: How to change confirmation email? #45646
    Anh TranAnh Tran
    Keymaster

    Hi Scott,

    Please overwrite the template of the email confirmation template with templates in your theme, similarly to how overwrite WooCommerce templates. For details, please follow the docs:

    https://docs.metabox.io/extensions/mb-user-profile/#email-templates

Viewing 15 posts - 31 through 45 (of 3,958 total)