Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Scot,
Thanks for reaching out.
I don't see the same error with the function
FieldKeys::all()on my site when using the plugin Theme My Login. However, I'm going to escalate the issue to the development team to add a condition to check the value passed to an array function.Peter
ModeratorHello François,
Thanks for reaching out.
Yes, please share the exported JSON file. I will import it to my local site and check the issue.
Peter
ModeratorHello,
Thanks for reaching out.
I check the screenshot and think that it could be a conflicting issue with a third-party plugin or custom code on your site. Can you please try to deactivate all plugins, leave only Meta Box activated and switch to a WordPress theme to see if it helps?
May 1, 2026 at 10:17 PM in reply to: Data for Model does not show (except record ID#) plus Warning for line 689 #49946Peter
ModeratorHello,
Thanks for reaching out.
I found 2 issues in your code that register the custom table and custom fields:
1. The column title is
st_name_idbut the field ID isstate_name_id. The column title must match the field ID, following the documentation https://docs.metabox.io/extensions/mb-custom-table/#notesThere is an error in the debug log related to this issue
WordPress database error Unknown column 'state_name_id' in 'field list' for query INSERT INTOcc_geo_states(state_name_id,stype,state_base_name,state_abbr,mtfcc,geoid,state,statens`) VALUES ('23', 'a', 'a', 'a', 'a', 'a', 'a', 'a') made by do_action('load-toplevel_page_model-statesmodel'), WP_Hook->do_action, WP_Hook->apply_filters, MetaBox\CustomTable\Model\Admin->load_add_edit, do_action('mbct_model_edit_load'), WP_Hook->do_action, WP_Hook->apply_filters, MetaBox\CustomTable\Model\MetaBox->save_model, RW_Meta_Box->save_post, do_action('rwmb_after_save_post'), WP_Hook->do_action, WP_Hook->apply_filters, MetaBox\CustomTable\Loader->update_object_data, MetaBox\CustomTable\Storage->insert_row
`2. The parameter passed to the callback function is
$metaboxesbut inside the callback function, you use a different variable$meta_boxes(underscore).After fixing 2 issues, I can create a model entry and edit existing entries properly.
Peter
ModeratorHello,
The compatibility with WPML supports translating the post type labels to other languages and it works properly. But I'm not sure if the breadcrumb in the frontend uses the post type label in a correct way and makes it translatable. Since it is not created by Meta Box so I'm not able to check it.
If you want to check the issue further, please share your site admin account by submitting this contact form https://metabox.io/contact/Thank you.
April 29, 2026 at 8:49 PM in reply to: MB Blocks regression: nested instances of the same block render issue #49937Peter
ModeratorHello Emiliano,
Thank you for sharing the blocks. I can see the issue with the following format:
- Section
-- Row > A custom inner block
-- Row > A custom inner block
-- Row > A custom inner blockthen 3 custom inner blocks display the same content in the frontend as the first inner block.
I've escalated the issue to the development team to check and fix this. I will let you know when it's done.
Peter
ModeratorHello Sinisa,
Thanks for reaching out.
I suggest you follow the documentation https://docs.metabox.io/integrations/wpml/#custom-post-types
to translate posts and post type name using WPML. For the translation in the frontend, you can contact WPML support and ask them for more information.April 28, 2026 at 9:25 AM in reply to: MB Blocks regression: nested instances of the same block render issue #49933Peter
ModeratorHello Emiliano,
Thanks for reaching out.
I've tried to reproduce the issue on my site but did not see that: many instances of an inner block inside a custom block, all of inner blocks are displayed properly.
Can you please share the code that you use to register the custom fields, blocks, template files and let me know how to reproduce the issue?
Peter
ModeratorHello Nicole,
Thanks for reaching out.
The integration with Divi5 is on our development queue and we are working on it. I will let you know when there is an update for this integration.
Peter
ModeratorHello Johannes,
Can you please use the setting
enqueue_stylesetting instead of the settingenqueue_block_assetsand recheck the issue?Peter
ModeratorThat should be the issue. To access the admin area and fix this, please edit the table
wp_postsin the database, find the post typemb-relationshipand delete the new relationship created.If you create a new relationship, please select the taxonomy for the Term connection.
Peter
ModeratorHello Ronny,
Thanks for reaching out.
Can you please share a screenshot of the relationship created? Do you leave the Taxonomy select field empty?
https://imgur.com/jqZN12BApril 22, 2026 at 10:42 PM in reply to: ✅Broken re-order posts: need support for WordPress presistent caching API #49923Peter
ModeratorHello,
While waiting for the update of MB CPT, you can edit the file
/mb-custom-post-type/src/PostTypeReorder.php, on line 266, clear the object cache after updating the post parent.$wpdb->update( $wpdb->posts, [ 'post_parent' => $item['parent_id'] ? $item['parent_id'] : 0, 'menu_order' => $item['order'], ], [ 'ID' => $item['id'] ] ); wp_cache_flush_group( 'posts' );Let me know how it goes.
Peter
ModeratorHello Wendell,
Thanks for reaching out.
Currently, there isn't an option to integrate Cloudflare Turnstile to MB Frontend Form. However, if you want to add some HTML code to the form, like Google Tag Manager, you can use the action hook
rwmb_frontend_before_submit_button. Refer to the documentation
https://docs.metabox.io/extensions/mb-frontend-submission/#general-hooks
https://developers.cloudflare.com/turnstile/get-started/Peter
ModeratorHello,
I'm also not able to reproduce the issue on my side. If you have more information about this issue or steps to reproduce it, please let me know.
Thanks.
-
AuthorPosts