Forum Replies Created
-
AuthorPosts
-
September 18, 2025 at 9:22 PM in reply to: Manual field groups not showing up on setting page after adding groups via code #49009
Peter
ModeratorHello,
Thanks for the details.
It isn't a bug and is working properly as it is. If you install your custom plugin, including the local JSON file, you need to go to the Meta Box > Field groups to sync the changes.
If you have the local JSON file in the plugin/theme folder, it will be loaded as a higher priority than the field group in the builder.Following the documentation https://docs.metabox.io/local-json/
Peter
ModeratorHello,
Thanks for reaching out.
I notice that the option Hide from front doesn't work when using the user profile form. I've escalated this issue to the development team to fix it as soon as possible.
Peter
ModeratorHello Jeff,
Please update Meta Box AIO to new version 3.1.1 to fix this issue. Thank you.
Peter
ModeratorHello,
Please update Meta Box AIO to new version 3.1.1 to fix this issue. Thank you.
Peter
ModeratorHello,
Please update Meta Box AIO to the new version 3.1.1, create a new radio field and recheck the issue.
Let me know how it goes.
Peter
ModeratorHello,
I'm sorry about this experience. You can download the previous version of Meta Box AIO here
https://drive.google.com/file/d/1glayFX7IHOQwx082hW6KHM1JVvy6lJLe/view?usp=sharingThe fix for this issue will be included in the next update of this plugin.
Thanks.
Peter
ModeratorHello,
Thanks for reaching out.
Can you please export the settings page and field group associated with the settings page to JSON files and share them here? I will import files to my site and investigate the issue.
Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorHello Chris,
All the settings look good. I don't see any issue with them. Please share your site admin account and FTP by submitting this contact form https://metabox.io/contact/
I will take a look.
Peter
ModeratorHello,
Thank you for your feedback.
I can confirm and reproduce the issue on my site. The plural and singular texts are text-encoded and Unicode-escaped, which causes the issue. I've escalated this issue to the development team to fix it in the next update of MB CPT extension.
September 11, 2025 at 8:53 PM in reply to: Image are not updating in the setting tab and custom fields #48972Peter
ModeratorHello Artur,
In case you are using Bricks Builder and encounter any issues with installation, configuration, compatibility, or usage, please reach out to them.
Refer to our support policy https://metabox.io/support/topic/support-policy/Thank you.
Peter
ModeratorHello Ole,
Thanks for reaching out.
What is the Meta Box Builder version on your site? Please update this plugin to the latest version 5.0.1 or use the plugin Meta Box AIO 3.0.1 and recheck the issue.
If it doesn't help, please share the import file with me. I will try to import it to my demo site and investigate the issue.
Peter
ModeratorHello Chris,
Thanks for reaching out.
I check the category (taxonomy) page and see it works well but doesn't show any associated posts. Can you please share the taxonomy listing page in the admin area? I think it is admin area > issue330 > topics.
I also suggest you follow some troubleshooting steps below and see if it helps:
- go to Settings > Permalinks > Re-save permalink.
- deactivate all plugins except Meta Box plugins, switch to a WordPress theme.Peter
ModeratorHello,
Thanks for your feedback.
I will inform the development team to consider supporting the feature include/exclude for custom fields in future updates.
Let me know if you have any questions.
Peter
ModeratorYes, I've imported the field group from your JSON code, but didn't see the issue. Please try to create a backup of your production site and re-import field groups to fix the issue.
Let me know how it goes.
Peter
ModeratorHello,
I'm afraid that there aren't other methods to get data from a custom table without ID. We also use the SQL query to get the data, please check this function
private static function query_get( int $object_id, string $table ): array { global $wpdb; $row = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $table WHERE <code>ID</code> = %d", $object_id ), ARRAY_A ); return is_array( $row ) ? $row : []; }file
/wp-content/plugins/meta-box-aio/vendor/meta-box/mb-custom-table/src/Cache.php -
AuthorPosts