Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I'm afraid that it isn't possible. The action hook
rwmb_after_save_postwill be triggered after the post is saved. If you want to update the field value with the post ID after importing data with WP All Import, you can try to use their hook to update field value:add_action( 'pmxi_saved_post', function ( $post_id ) { update_post_meta( $post_id, '_my_read_only_field', $post_id ); } );or create an SQL query to update field value manually in the database.
Peter
ModeratorHello,
MB Frontend form doesn't support the
recaptcha_actionsetting. If you want to use a hook to modify the form, please check the available hooks here https://docs.metabox.io/extensions/mb-frontend-submission/#hooks-1Thanks.
Peter
ModeratorHello,
I've escalated the issue to the development team to fix it as soon as possible. I will let you know when I have more information form the team.
Thank you.
Peter
ModeratorHello,
Thanks for reaching out.
There isn't an option to hide a field without using conditional logic. You can use the field
hidden, following the documentation https://docs.metabox.io/fields/hidden/Peter
ModeratorHello,
Please use the option WordPress posts storage (legacy) for order on the settings page WooCommerce > Settings > Advanced > Features, instead of HPOS (High-performance order storage) and recheck the issue.
Let me know how it goes.
Peter
ModeratorHello,
I use your code in my demo site and see that the time field doesn't display the format with second value (ss). Please remove this setting to make it displays the saved value.
'timeFormat' => 'HH:mm:ss',Peter
ModeratorHello,
Meta Box also uses the WordPress function
media_handle_upload()to upload the file to the media library. So you can use the same filter hook to modify the file name. Read more about the hook in the WP documentation
https://developer.wordpress.org/reference/functions/_wp_handle_upload/January 20, 2026 at 10:34 PM in reply to: ✅Custom Fields on WooCommerce product page: Problems with Divider and Position #49637Peter
ModeratorHello,
Thanks for reaching out.
I'm not able to reproduce 2 issues as you reported. For the first one, can you please deactivate other plugins except Meta Box, WooCommerce, switch to a WordPress theme and recheck the issue?
For the second one, the position of the meta box is saved to the user meta after it was changed. But you can drag and drop the meta box to move it below the product description. See this screenshot https://imgur.com/1Pj3I4O
Peter
ModeratorHello,
There are some similar questions in the past and we recommend having one frontend form per page instead of multiple forms. Because hey won't work correctly, please check this reply https://support.metabox.io/topic/can-i-have-more-than-two-front-end-submission-lists-checked-in-one-place/#post-48374
Thank you.
January 19, 2026 at 10:54 PM in reply to: imported data in custom table not showing in WordPress #49630Peter
ModeratorHello,
Yes, you can remove the NULL option. However, you need to delete all rows that have the NULL value first, then change the column file upload to not null.
Peter
ModeratorHello,
There isn't an option to assign the post title to book title value in the database directly. If you are familiar with coding, you can try to use the action hook
rwmb_after_save_fieldto update field value after saving the post. Following the documentation https://docs.metabox.io/actions/rwmb-after-save-field/January 19, 2026 at 8:49 PM in reply to: imported data in custom table not showing in WordPress #49625Peter
ModeratorHello,
Thanks for reaching out.
Can you please let me know how you save the empty value? When edit a post and save or import data?
If you edit a post and save, the empty value won't be processed and the NULL value won't be inserted into the database.Peter
ModeratorHello David,
Thanks for your feedback.
There is an issue with the Image block in the Block Editor field. I've escalated the issue to the development team to fix it as soon as possible.
January 17, 2026 at 9:07 AM in reply to: [BUG] Cloneable fields group with advanced image field: images not always shown #49619Peter
ModeratorHello,
I'm sorry about this experience. The issue is still in our development queue. We've worked on it but there are still some edge cases that do not work correctly. We will include the fix for the issue in future updates when those cases are covered.
Thanks for your patience.
January 16, 2026 at 8:39 PM in reply to: Feature request: allow custom RichText formats in Block Editor field #49618Peter
ModeratorHello Stephen,
Thank you for your feedback. I will forward your request to the development team to consider supporting custom rich-text format in the Block editor field.
Let me know if you have any questions.
-
AuthorPosts