Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 3,708 total)
  • Author
    Posts
  • 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: 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.

    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

    in reply to: Relationship not bi-directional #45645
    Anh TranAnh Tran
    Keymaster

    Hi Andrew,

    Can you please share the setup of the relationship (code or screenshot)?

    in reply to: Exclude HTML tags from character count #45644
    Anh TranAnh Tran
    Keymaster

    Do you use the wysiwyg field or textarea field? We'll take a note on this and will let our devs check this.

    in reply to: Product Form #45643
    Anh TranAnh Tran
    Keymaster

    It's okay to post your question here 🙂

    Anh TranAnh Tran
    Keymaster

    Hi,

    Thanks for your suggestion. After a careful thought about this, we found that changing the markup + css for the fields is risky and might break thousands of websites. Note that currently Meta Box is using flexbox already (and when we changed to flexbox - which is a minor change - it also affected a lot of websites and we got some complaints about this).

    Regarding your request about grid + groups + columns to build complex layout/styling, it's very hard to "just implement" the grid without knowing the requirements. It's not just about columns, but also about nested columns/grids/groups, which can be very complicated and hard to debug when something is wrong.

    In this case, we'd like to suggest you to use these filters to change the markup for fields:

    https://docs.metabox.io/filters/rwmb-wrapper-html/
    https://docs.metabox.io/filters/rwmb-begin-html/
    https://docs.metabox.io/filters/rwmb-end-html/

    Or better, write a custom field type that gives you the flexibility of defining your own markup:

    https://docs.metabox.io/creating-new-field-types/

    in reply to: Composer is Failing on Several Packages #45400
    Anh TranAnh Tran
    Keymaster

    Can you please share us how do you structure your plugin, and also the content of your composer.json (without the license key)?

Viewing 15 posts - 16 through 30 (of 3,708 total)