Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I got the issue. Please add the setting
translationto the meta box settings to translate the field or copy the value to the translation post when duplicating the post. For example:$meta_boxes[] = [ 'title' => __( 'Job Specific Information', 'awaw' ), 'id' => 'obr_special_info', 'post_types' => 'book', 'context' => 'normal', 'translation' => 'translate', // here 'fields' => [ ... ]Please follow the documentation https://docs.metabox.io/integrations/polylang/#custom-fields
Peter
ModeratorHello Graham,
I'm not able to reproduce the issue on my demo site. The field values are copied to the translation post. However, I think that it is not necessary because you also need to add the translation value to all fields on the translation post.
If the image field is not working on your site, can you please export the field group to a JSON file and share it here? I will import the field group to my site and check the issue.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorNo, please try to download another plugin from WordPress.org and upload it to your site instead of installing from the Plugins page.
https://downloads.wordpress.org/plugin/contact-form-7.6.0.6.zipAlso, do you try to contact your hosting support and ask them about the "UploadGuard Blocked" that prevents installing plugins on your site?
June 17, 2025 at 10:35 PM in reply to: Conditional Logic Switch/ Field group without updating the page #48464Peter
ModeratorHello,
>> I would like the field group to be automatically shown/ hidden when the switch is activated
Yes, it should work like that because the Conditional Logic feature will show/hide the elements using JavaScript. Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.June 16, 2025 at 10:51 PM in reply to: Conditional Logic Switch/ Field group without updating the page #48457Peter
ModeratorHello Oli,
Is the element
Framing-optionscreated by Meta Box plugin? If so, you can simply follow the documentation to show/hide the field based on the switch field
https://docs.metabox.io/extensions/meta-box-conditional-logic/#with-uiIf not, it is a custom element on the editing page, you can follow this one to use conditional logic outside of the field group
https://docs.metabox.io/extensions/meta-box-conditional-logic/#using-outside-field-groupsJune 16, 2025 at 10:45 PM in reply to: ✅First cloneable group row isn’t shown in backend and then deleted #48456Peter
ModeratorHello Fabian,
Thanks for reaching out.
If you are using the latest version of Meta Box AIO 2.2.2, you can deactivate all other Meta Box plugins, including Meta Box.
Can you please share the screenshot of the state
first group row is hidden but contains a saved value? Also, please export the field group to a JSON file, share it with me and steps to reproduce the issue. I will check this on my demo site.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorHello Lee,
Can you please share some screenshots of the issue? If you upload other plugins to your site, does this also happen?
I think the file upload process is blocked by a security plugin or a module on your hosting. You can double-check this by deactivating other plugins, contact your hosting support, and then install Meta Box plugins again.
Peter
ModeratorHello,
Can you please enable WP debug log and see if there is any fatal error in the log when you visit other WooCommerce pages? I don't see any issues with only WooCommerce, Meta Box AIO 2.2.2 plugins activated on my site. Here is the screenshot https://ibb.co/Pvy40FLK
Please follow the documentation https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
Peter
ModeratorHello,
Thank you for reaching out.
I'm afraid that there isn't an option or filter hook to add the custom support for the CPT in the UI. You can use the code to register the CPT and add the custom support to the settings.
Please follow the documentation https://docs.metabox.io/extensions/mb-custom-post-type/#getting-php-codeJune 16, 2025 at 9:40 PM in reply to: Fatal Error with Grouped Fields & WPML Translation Plugin #48451Peter
ModeratorHello Linus,
Thank you for your feedback.
This issue has been escalated to the development team. It should be fixed in the next update of Meta Box AIO plugin.
June 13, 2025 at 11:26 PM in reply to: ✅Issue displaying translated custom fields group with WPML #48441Peter
ModeratorHello,
Thanks for reaching out.
Please export the field group to a JSON file, share it with me and the code that you use to output the field value in the frontend. I will help you investigate the issue.
Following the documentation
https://docs.metabox.io/extensions/meta-box-builder/#export--importJune 13, 2025 at 11:03 PM in reply to: Populate a selewct list in a CPT from values set in a Settings Page #48440Peter
ModeratorHello Andrew,
If you want to use the variable or a callback function and assign it to the
optionssetting, please ensure it returns an array of choices. For example:$formatted_options = [ 'cat1_value' => 'Category 1 Label', 'cat2_value' => 'Category 2 Label' 'cat3_value' => 'Category 3 Label', ]You can add the code above to your code and see how it works. Following the documentation
https://docs.metabox.io/fields/select/#settingsPeter
ModeratorHello Artur,
Please update Meta Box AIO plugin to version 2.2.2 to fix this issue.
Let me know if you still experience it.
Peter
ModeratorHello,
Thank you for the details. I can reproduce the issue on my demo site and I've escalated this to the development team to support duplicating the field value along with the post.
Hopefully it will be available soon.
Peter
ModeratorHello,
Yes, if you register the CPT by code, you can remove the CPT from the UI: Meta Box > Post Types page.
Let me know how it goes.
-
AuthorPosts