Forum Replies Created
-
AuthorPosts
-
November 11, 2025 at 11:08 AM in reply to: Contribution (pt_BR Translation) + Report on Non-Internationalized Strings #49312
Anh Tran
KeymasterHi Jayron,
Thanks a lot for your contribution. We've updated the translations for the plugins that you sent.
Regarding the translation format, since WordPress 6.5, it supports a new and more performant format for translation file
.l10n.phpinstead of the old-fashioned.mofile. We use this format in our plugins to have a better performance. We also converted all of your translations to this new format, so you don't have to do that and send us again.Regarding translations for strings in JavaScript (which is used in UI), we have updated our
.potfile. When you create a translation for it, please follow this step:- Create a
.pofile from.pot
- Run the following command to create JSON file:cd /path/to/plugin/folder wp i18n make-json languages --no-purgeUnfortunately, I know the only way to do that is via
wp-cli. I'm not sure if plugins like Loco Translate or WPML support creating JSON file for translating strings in JS.Anh Tran
KeymasterIn the latest version, we remove the inline HTML above. They were used for media and upload fields.
For the inline CSS, there is no way to change this behavior. However, you can remove them (and also inline CSS for WP blocks) using this snippet:
add_filter( 'styles_inline_size_limit', '__return_zero' );
August 14, 2025 at 3:04 PM in reply to: JavaScript error on admin pages without Meta Box dashboard elements #48727Anh Tran
KeymasterHi Nick,
We only enqueue
dashboard.json the Dashboard page, as you can see the source code here. We run the enqueue styles and scripts onload-$page_hook, which fires only on that admin page.Is there any special set up on your site? Can you please try with a fresh install?
Anh Tran
KeymasterWe added support for outputting inline style, to improve the site's performance. See more details here.
FYI: inline style is not that bad 🙂
Anh Tran
KeymasterHi, we have a fix for this bug here. Can you please try it and let us know if that fixes?
Anh Tran
KeymasterHi, we have a fix for this bug here. Can you please try it and let us know if that fixes?
August 6, 2025 at 9:54 PM in reply to: ℹ️Add localhost prefix support to detect-dev-staging-domain.php #48660Anh Tran
KeymasterHi,
"localhost" is always treated as dev domain (note, we verify by domain, not port, so "localhost" will work for all hosts like "localhost:8080", etc.). You can see the source code here.
We also added ".localhost" suffix so all domains *.localhost will be treated as dev domains.
May 28, 2025 at 10:43 AM in reply to: Unintended auto-update crashes custom fields and causes fatal error #48333Anh Tran
KeymasterHi Yumikom,
I guess you were referring to the constants
RWMB_CSS_URL(added since the beginning of Meta Box) andRWMB_CSS_DIR(added 17 months ago). Probably you were using a very old version of Meta Box, and WP auto updates an extension that usesRWMB_CSS_DIR.Let us work on the auto update and will fix this issue.
May 21, 2025 at 9:17 AM in reply to: ✅Upgraded to AIO, now meta fields won't display unless free MB is activated #48302Anh Tran
KeymasterThe problem is that Meta Box AIO loads Meta Box at
inithook (with priority -5). If you put the snippet to definerwmb_metafunction in your theme'sfunctions.php, then it will load **before**, which defines an emptyrwmb_metafunction.This method was usually used for themes that are sold like on ThemeForest, to prevent errors of undefined function
rwmb_metawhen they haven't installed Meta Box yet.In your case, I'd recommend removing that snippet, and it will work fine.
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
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.
-
AuthorPosts