Forum Replies Created
-
AuthorPosts
-
November 8, 2024 at 5:11 PM in reply to: ✅Fontend submission : classic type content -- convert to blocks? #46892
Anh Tran
KeymasterHi pixluser,
This feature is done and will be included in the next version of MB Frontend Submission.
Anh Tran
KeymasterHi 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'; } ); } );November 8, 2024 at 10:14 AM in reply to: ✅Metabox Group - Adjust 'Remove Clone' Dialog Notification Message #46888Anh Tran
KeymasterHi Codog,
This improvement is done and will be available in the next version.
Anh Tran
KeymasterThis is done and will available in the next version.
Anh Tran
KeymasterHi Rebecca and Duplo,
This is fixed in this pull request and will be available in the next version.
Anh Tran
KeymasterHi 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.
August 22, 2024 at 8:30 AM in reply to: ✅frontend form shortcode to exclude certain custom fields #46196Anh Tran
KeymasterHi guys,
This feature was implemented in the plugin. Please follow the docs on using it.
Anh Tran
KeymasterHi 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).
Anh Tran
KeymasterHi 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
Anh Tran
KeymasterHi Andrew,
Can you please share the setup of the relationship (code or screenshot)?
Anh Tran
KeymasterDo you use the
wysiwygfield ortextareafield? We'll take a note on this and will let our devs check this.Anh Tran
KeymasterIt's okay to post your question here 🙂
June 8, 2024 at 9:23 AM in reply to: ✅Enhancement Request: Group fields in metaboxes using CSS GRID & FLEXBOX #45624Anh Tran
KeymasterHi,
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:
Anh Tran
KeymasterCan you please share us how do you structure your plugin, and also the content of your
composer.json(without the license key)? -
AuthorPosts