Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
The JSON files that you shared are invalid. The data is missing in the file content.
Please share your site admin account by submitting this form https://metabox.io/contact/
I will take a closer look.Peter
ModeratorHello,
Please export your field group to a JSON file and share it here. I will help you check the field settings and conditional logic. Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Peter
ModeratorIt is an example field group ID, you can get the field group ID when editing a field group. Please check this screenshot https://imgur.com/dCYRXcC
April 1, 2025 at 10:05 PM in reply to: Meta Box lost ability to update Custom Table Group fields via API after 1.30.5 #47979Peter
ModeratorHello,
The development team is working on this issue, the fix for this will be included in the future update of Meta Box plugins.
Thank you.
Peter
ModeratorHello Simon,
If you use the group field, please use the subfield
taxonomy_advanced. The fieldtaxonomysets post terms so it doesn't work with group field or custom block.
Please follow the documentation
https://docs.metabox.io/fields/taxonomy/
https://docs.metabox.io/fields/taxonomy-advanced/
and this topic https://support.metabox.io/topic/taxonomy-vs-taxonomy-advanced/Peter
ModeratorHello,
Please upload your site to an online hosting and share the admin account by submitting this contact form https://metabox.io/contact/
I will take a look.
Peter
ModeratorHello,
You can use the bypass sanitization and add the
<br>tag to the textfieldagain. Following the documentation https://docs.metabox.io/sanitization/#bypass-the-sanitizationPeter
ModeratorHello,
If you use the Bricks builder, you also need to add the ID to the form option, like the field group ID.
meta-box-id-1,posts-to-page_relationships_fromMarch 31, 2025 at 8:35 PM in reply to: How to bind to the uploader to pass custom parameters to FormData #47966Peter
ModeratorHello,
Can you please let me know the purpose or a real case to pass the custom param to the form data, specifically the file media.js?
If you want to upload the file to a custom folder, you can use the field type
file. Please follow the documentation https://docs.metabox.io/fields/file/Peter
ModeratorHello,
I import the field group to my demo site, edit a category, add a value to the field and save. It is saved properly to the database without any issues.
Can you please deactivate all other plugins (including Breakdance) and switch to a WordPress theme then check the issue again?Peter
ModeratorHello Tanja,
Each relationship box has the ID
{$relationship_id}_relationships_fromand{$relationship_id}_relationships_to. You can include these IDs in the form shortcode to show it on the front end.For example:
[mb_frontend_form id="meta-box-id-1,posts-to-page_relationships_from" post_fields="title,content"]Following the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#how-to-add-relationships-to-the-frontend-submission-form
Peter
ModeratorHello Topher,
The compatibility plugin between Meta Box and WP All Import (WPAI) is developed by WPAI team. Please use their plugin to get full features when importing data with Meta Box.
https://www.wpallimport.com/import-meta-box-fields/Peter
ModeratorHello,
Can you please export the field group to a JSON file and share it with me? I will import the field group to my demo site, check the field settings and see how it works on my site.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Peter
ModeratorHello,
All the post type settings are stored in the post content, there is nothing to do with the custom field of the post type
mb-post-type. Please check this screenshot https://imgur.com/ZZ7nHx7you can update the post type settings by updating the post content of the post type
mb-post-type.If you want to get and update the post content of a post type, you have to include
editorin thesupportsarray for the content field to be included in the REST API response.Here is an example
function enable_rest_api_for_metabox_post_type($args, $post_type) { if ($post_type === 'mb-post-type') { $args['show_in_rest'] = true; $args['supports'] = ['title', 'editor']; } return $args; }however, when you edit the post type in the admin area, the UI will be broken because
editoris enabled by customization.Peter
ModeratorHello,
Yes, it is possible. WordPress supports a filter hook
register_post_type_argsso you can modify a post type setting. Please follow the documentation
https://developer.wordpress.org/reference/hooks/register_post_type_args/ -
AuthorPosts