Forum Replies Created
-
AuthorPosts
-
October 14, 2025 at 10:34 PM in reply to: โ MB User Profile adds some clutter to the wp-admin/profile.php page #49148
Peter
ModeratorHello,
It is normal behavior if you create some user meta fields and they are displayed in all user role profile pages. If you want to show the fields for a specific role, you can use the extension MB Include Exclude. In the builder, it is the option Advanced Rules, screenshot https://imgur.com/jpfQUIQ
Following the documentation https://docs.metabox.io/extensions/meta-box-include-exclude/
And refer to this topic https://support.metabox.io/topic/conditionals-for-user-fields-not-working-as-expcted/
Peter
ModeratorHello,
Thanks for reaching out.
Both ways: using the UI or PHP code are safe and secure on a WordPress site. In both ways, you still need to install and activate Meta Box AIO (or other single plugins) on your site to use the features.
If you want to deeply customize the field and field group, you can use the PHP code. Otherwise, the UI supports most of the features that Meta Box plugins have.Regarding the translation, you can use a translation plugin like WPML or Polylang to translate custom fields on your site.
https://docs.metabox.io/integrations/polylang/
https://docs.metabox.io/integrations/wpml/October 13, 2025 at 9:44 PM in reply to: โ MB User Profile adds some clutter to the wp-admin/profile.php page #49140Peter
ModeratorHello,
Thanks for reaching out.
You are correct, those sections are added to the user profile page by the extension MB User Profile. They shouldn't be displayed there. I'm going to escalate the issue to the development team to fix the issue in future updates.
October 13, 2025 at 9:20 PM in reply to: Hiding/removing the single post page of certain post types #49139Peter
ModeratorHello Ash,
WordPress itself doesn't support a setting to remove the single post page but keep the archive page in the frontend. You can try to redirect the single post page to the archive page or another page, for example:
add_action( 'template_redirect', function() { if ( is_singular( 'your_post_type' ) ) { wp_redirect( get_post_type_archive_link( 'your_post_type' ), 301 ); exit; } } );Peter
ModeratorI can see the issue with the URL field and conditional logic. I'm going to escalate this to the development team to check and fix the issue.
Thanks.
Peter
ModeratorHello,
I don't see the issue with "translate" setting on my site, please check this screen record https://drive.google.com/file/d/1gKr9ZbJAi2LWQ8J56Qe5Xv19Sef6NHfM/view?usp=sharing
Let me know if you have any questions when using Polylang with Meta Box.
October 11, 2025 at 8:28 AM in reply to: Unable to save due to email field is set to required #49129Peter
ModeratorHello Julian,
Thanks for reaching out.
I'm not able to reproduce the issue on my site. Can you please export the field group to a JSON file and share it with me? Following this documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Peter
ModeratorI'm going to report this issue to the development team to check it further. I will let you know when I have more information.
Thanks for your co-operation.
Peter
ModeratorHello,
For the
textfield withcopysetting, I see it works properly. The copy action means this field value is synchronized between the original post and its translation. It doesn't mean only copying from the original post.Peter
ModeratorHello,
Can you please re-upload the file using the JSON format? The txt format isn't correct because all curly brackets are removed.
Or you can upload the file to Google Drive, Dropbox ... and paste the URL here.
Peter
ModeratorHello,
Can you please share your site admin account by submitting this contact form https://metabox.io/contact/ ? I will take a closer look.
Thank you.
Peter
ModeratorHello Robert,
Thanks for reaching out.
Glad to hear you can solve some issues on your own. I'm not totally sure what happens with the field group. If you know how to reproduce the issue with clear steps, please let me know. Or simply, export the field group that has the problem and share the JSON file with me. I will help you check the issue.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Regarding the taxonomy custom code, it is an example of how you use the action hook https://docs.metabox.io/actions/rwmb-after-save-field/
You can request a customization service to fix the custom code by submitting this contact form https://metabox.io/contact/Peter
ModeratorHello William,
Thanks for reaching out.
Please try to switch to a WordPress theme (2025), download a fresh copy of Meta Box AIO plugin version 3.2.0 from My Account page, reinstall it on your site and recheck the issue.
https://metabox.io/my-account/Let me know how it goes.
Peter
ModeratorHello,
The option 'translation' => 'translate' does not work correctly in the textarea field, and always behaves in the same way as a 'copy'.When you create or edit a translation post, if you add the translation field value, difference from the original field, after saving the post do you see the same value as the original?
Peter
ModeratorHello,
Here is the new test site info:
URL: https://processhot.s2-tastewp.com
Username: admin
Password: lMCvLSdfyV0You can setup a WordPress site with TasteWP within a few clicks. Let me know if you can reproduce the issue on the test site.
-
AuthorPosts