Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I got it. It happens because the field group setting
contextis set toafter_title. To fix the issue, please follow steps below:
- Change the Rule to Post type
- Select Position: After content
- Save the field group
- Reload the page
- Change the Rule to Settings page and select the settings page that you want to show the field groupscreenshot https://imgur.com/dhUEvrW
Let me know how it goes.
Peter
ModeratorHello Ted,
Thanks for reaching out.
Yes, Meta Box is compatible with Polylang. However, there isn't an option to set the translation settings for the relationship. So you need to set the connection manually when editing the translation post.
Refer to the documentation https://docs.metabox.io/integrations/polylang/#relationship-labels
October 27, 2025 at 10:30 PM in reply to: OSM map does not render fully when the field has conditional logic #49225Peter
ModeratorHello,
This issue has been fixed in a recent update of Meta Box plugin. Please update Meta Box or Meta Box AIO to the latest version and recheck the issue.
Let me know if you still experience it.
Peter
ModeratorHello,
Thanks for the details. I can see the issue with the Geolocation fields when enabling conditional logic. Let me escalate the issue to the development team to fix it.
Peter
ModeratorHello Jayron,
Thanks for reaching out.
There is an issue with the Text Limiter feature when adding the prepend value to the field. I've escalated this issue to the development team to fix it as soon as possible.
In the meantime, you can remove the prepend value to make it work.Peter
ModeratorHello Jayron,
I'm not able to reproduce the issue on my demo site. The placeholder
%singular_name%should be replaced with your singular name in the Labels tab. Please update Meta Box AIO to the latest version 3.2.0, create a new CPT then check this issue again.Peter
ModeratorHello,
Thanks for reaching out.
Can you please export the not-working field group to a JSON file and share it with me? Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Also, do you see any JavaScript errors in the Console tab of the browser inspect tool?
Peter
ModeratorHello,
Thanks for reaching out.
Yes, that is expected behavior. The
fieldsetting will be applied to the reversed object typefrom<->tobecause you are actually using the field of the reversed object type.
It might be confusing at first time but everything works as it is.Let me know if you have any issues when using MB Relationships extension.
Peter
ModeratorHello,
I see there are some issues when checking your field group:
1. Address fields, if you use the custom ID, you have to use the
bindingsetting, screenshot https://imgur.com/wkyHmpF
Following the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#custom-binding2. Field group setting doesn't have
geo.api_key, screenshot https://imgur.com/J5YL3hj
Following the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#geolocation-apiAfter that, the address fields are auto-populated with values as well. Here is the screen record https://drive.google.com/file/d/1l_mZHqxbYdltxVcGxMW2zC_b7u0rlMK0/view?usp=drive_link
October 23, 2025 at 11:04 PM in reply to: Hiding/removing the single post page of certain post types #49205Peter
ModeratorHello,
Thanks for your feedback.
I will inform the development team to consider supporting this feature in future updates.
Peter
ModeratorHello,
The Geolocation extension still works properly on my demo site, screenshot https://imgur.com/ead26K8. I think there could be an issue with your Google API Key. Please try to create a new key and recheck the issue.
If it still doesn't work, please export your field group to a JSON file and share it with me. I will import it to my site and investigate the issue.
Peter
ModeratorHello,
Thanks for reaching out.
You need to have those plugins activated on your site to enable/disable the extensions
- Beaver Builder
- Elementor
- FacetWP
- Yoastbut somehow, the option
meta_box_aioin the database has values for those extensions. I suggest you access your database, table wp_options, search for the optionmeta_box_aioand update it with value below to fix the issue.a:1:{s:10:"extensions";a:28:{i:0;s:16:"mb-acf-migration";i:1;s:16:"mb-admin-columns";i:2;s:9:"mb-blocks";i:3;s:15:"mb-comment-meta";i:4;s:19:"mb-custom-post-type";i:5;s:15:"mb-custom-table";i:6;s:18:"mb-divi-integrator";i:7;s:22:"mb-frontend-submission";i:8;s:12:"mb-rank-math";i:9;s:16:"mb-relationships";i:10;s:11:"mb-rest-api";i:11;s:11:"mb-revision";i:12;s:16:"mb-settings-page";i:13;s:12:"mb-term-meta";i:14;s:20:"mb-toolset-migration";i:15;s:12:"mb-user-meta";i:16;s:8:"mb-views";i:17;s:16:"meta-box-builder";i:18;s:16:"meta-box-columns";i:19;s:26:"meta-box-conditional-logic";i:20;s:20:"meta-box-geolocation";i:21;s:14:"meta-box-group";i:22;s:24:"meta-box-include-exclude";i:23;s:18:"meta-box-show-hide";i:24;s:13:"meta-box-tabs";i:25;s:17:"meta-box-template";i:26;s:21:"meta-box-text-limiter";i:27;s:16:"meta-box-tooltip";}}October 21, 2025 at 11:15 PM in reply to: rwmb_frontend_validate still passes when $validate is a string #49191Peter
ModeratorHello Nick,
The frontend validation filter still works well on my demo site. You can try to setup a clean environment with WordPress and Meta Box plugins to recheck this. If it works, please deactivate all plugins except Meta Box plugins, switch to a WordPress theme to troubleshoot the issue.
October 21, 2025 at 10:44 PM in reply to: ✅User EDITOR don't save changes in Elementor content for CPT #49190Peter
ModeratorHello,
Thanks for reaching out.
There could be an error in the background when the editor user saves the post. Please enable WP debug by following the documentation https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
then you can login as an editor, edit the post and save some changes. Then check the error log if there are any error messages when you save the post.
Peter
ModeratorHello,
Yes, the MB user registration form doesn't sanitize the username field as WordPress does. It is simply a
textfield and we use the functionsanitize_text_fieldto sanitize this field. See more here https://github.com/wpmetabox/meta-box/blob/master/inc/sanitizer.php#L50and check the function
get_register_fields()in the file/wp-content/plugins/meta-box-aio/vendor/meta-box/mb-user-profile/src/DefaultFields.phpIf you want to customize this field, you can use the filter hook
rwmb_profile_register_fields, added to the functionget_register_fields. -
AuthorPosts