Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Dennis,
Thanks for reaching out and sharing a new compatibility plugin.
I'm going to forward this topic to the marketing team to create new documentation regarding compatibility with the Mosaic builder.
Peter
ModeratorHello Will,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.August 17, 2026 at 10:17 PM in reply to: Bug: Admin search returns 0 results – passes only first post ID to main query #50160Peter
ModeratorHello Joerg,
Can you please copy your site to a staging site and remove sensitive data if needed and share the credentials? Or share a screen record of steps you take on your site to reproduce the issue. I will follow those steps to reproduce the issue on my site.
Thank you.
Peter
ModeratorHello Will,
Thanks for reaching out.
Yes, it works properly on my test site, please check this screenshot https://ibb.co/0RQFLQsg
Maybe the series slug is used by another taxonomy on your site. Please try to change the slug to another thing, like series123 and recheck the issue.August 17, 2026 at 8:53 PM in reply to: ✅Make category dropdown select available in frontend post creation form #50158Peter
ModeratorHello,
Thanks for reaching out.
You can use the field
taxonomyto display the list of categories in the frontend and assign the selected category to the created post. Please read more about the taxonomy field in the documentation
https://docs.metabox.io/fields/taxonomy/August 10, 2026 at 9:47 PM in reply to: Bug: Admin search returns 0 results – passes only first post ID to main query #50154Peter
ModeratorHello FRYE,
Thanks for reaching out.
I'm not able to reproduce the issue on my demo site using the MB Admin Columns and WPML plugin to search for a post of a CPT. Can you please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.
August 10, 2026 at 9:08 PM in reply to: After update - missing custom fields in post-type xyz #50153Peter
ModeratorHello,
Thanks for reaching out.
Can you please export the field group to a JSON file and share it with me? I will import it to my demo site and see how it works. You can also try it on a clean installation of WordPress and observe the issue.
Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Peter
ModeratorHello Stefan,
Thanks for reaching out.
It could be a caching JS or conflicting with another plugin or custom code on your site. Please try to deactivate all plugins except Meta Box AIO, WooCommerce plugins, switch to a WordPress theme, clear all caches (browser, hosting ...) and recheck the issue.
August 4, 2026 at 9:01 PM in reply to: BUG: Saving a serialized PHP array in a textarea field as text returns error #50146Peter
ModeratorHello Ahmed,
Thanks for reaching out and for your feedback.
Yes, you are correct. The function
maybe_unserializein the storage of custom table interferes with the serialized array and causes the issue. I suggest you use the custom code below to fix the issueadd_filter( 'rwmb_raw_meta', function ( $value, $field, $object_id ) { if ( ( $field['id'] ?? '' ) !== 'your_field_id' ) { return $value; } $storage = $field['storage'] ?? null; if ( ! $object_id || ! $storage instanceof \MetaBox\CustomTable\Storage ) { return $value; } $row = \MetaBox\CustomTable\Cache::get( $object_id, $storage->table ); return $row[ $field['id'] ] ?? $value; }, 10, 3 );I'm going to escalate the issue to the development team to fix it as soon as possible.
August 4, 2026 at 8:29 PM in reply to: Multiple `post` object selections (`checkbox_list`) only saving first item durin #50145Peter
ModeratorHello Paul,
Thanks for reaching out.
By default, the field type
checkbox_listwill save each value in a single row in the table wp_postmeta. Following the documentation https://docs.metabox.io/fields/checkbox-list/#dataand you need to use commas
,when importing multiple values for this field, following the WP All Import documentation https://www.wpallimport.com/documentation/import-meta-box-basic-fields/If it doesn't work, I recommend contacting WP All Import who develops the integration plugin and asking them for more information.
Peter
ModeratorHello Annemijn,
Thanks for reaching out.
Currently, the auto-create custom table feature only supports creating the table with TEXT data type. It will work with all field types created by Meta Box. Please read more in the documentation
https://docs.metabox.io/extensions/mb-custom-table/August 3, 2026 at 9:31 PM in reply to: Bug - Validation is triggered even though the field is hidden by Conditional Log #50139Peter
ModeratorHello Tom,
I'm afraid that it was not. I will let you know when it is fixed.
Thank you.
Peter
ModeratorHello,
If you use the plugin Meta Box, you should update it to the latest version 5.14.0 to be compatible with Meta Box AIO 3.10.0.
Also, you can deactivate the single Meta Box plugin because it is already bundled in Meta Box AIO. Just use the Meta Box AIO plugin version 3.10.0 to get all features.
Thanks.
Peter
ModeratorHello,
Thanks for reaching out.
Can you please re-apply the workaround that I shared with you previously to fix the issue?
Add the code
$posts = array_filter( array_map( function( $p ) { return get_post( $p->ID ); }, $posts ) );to the function
get_post_data()on line 123, before the code$posts = array_map( [ $this, 'create_post_object' ], $posts );file /wp-content/plugins/meta-box-aio/vendor/meta-box/mb-views/src/Renderer.php
Peter
ModeratorHello,
You can share your site credentials by submitting this contact form https://metabox.io/contact/
I will help you fix the error message.Thanks.
-
AuthorPosts