Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterDear 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!
Anh Tran
KeymasterDear Hazmi, I have fixed this issue, need to test today and you will get an update shortly.
November 8, 2024 at 5:11 PM in reply to: ✅Fontend submission : classic type content -- convert to blocks? #46892Anh 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
KeymasterDear 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!
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.
Anh Tran
KeymasterHi RBD, can you please share your meta box code (JSON or PHP) so I can replicate it?
Cheers!
September 11, 2024 at 11:35 AM in reply to: Please FIX ! Visible condition NOT WORK after upgrade to Meta Box 5.10.0 #46408Anh Tran
KeymasterHi 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!
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
-
AuthorPosts