Forum Replies Created
-
AuthorPosts
-
October 6, 2025 at 10:22 PM in reply to: Conditionals for User Fields not working as expcted. #49094
Peter
ModeratorHello Alan,
The setting
User rolewill show the field group if the current (logged-in) user role is "GFD Member". If you want the administrator to be able to edit the field group of the user role, you can add the settingEdited user roleand assign it to "GFD Member".Following the documentation https://docs.metabox.io/extensions/meta-box-include-exclude/
October 6, 2025 at 10:01 PM in reply to: Meta Box AIO with only Classic Editor instead of Gutenberg - recommended or not? #49093Peter
ModeratorHello,
I'm afraid that currently we don't have a plan to support ClassicPress. You can use the plugin Classic Editor to have a similar feature when editing a post.
Thanks.
October 6, 2025 at 9:42 PM in reply to: PHP code for CPTs generated by the plugin has a new label called "text_domain" #49092Peter
ModeratorHello,
You can post the issue in another topic or share it by submitting the contact form https://metabox.io/contact/
I will help you check it first. Thanks.
Peter
ModeratorHello,
I don't use any custom code on the test site, just the basic setup. You can access the test site with the credentials below. Note: it will expire in 2 days.
https://vengefulstem.s6-tastewp.com/wp-admin
Username: admin
Password: 1a3pwf0KuP0October 3, 2025 at 8:50 PM in reply to: Meta Box AIO with only Classic Editor instead of Gutenberg - recommended or not? #49080Peter
ModeratorHello,
Thanks for reaching out.
Meta Box supports creating custom fields in the admin area to allow users to input value and output the value in the frontend. So you can use any editor: Classic or Block (Gutenberg) and Meta Box on your site. All main features are the same when you use the Classic editor.
Let me know if you have any questions.
October 3, 2025 at 8:34 PM in reply to: PHP code for CPTs generated by the plugin has a new label called "text_domain" #49079Peter
ModeratorHello,
Thank you for your feedback.
The item
text_domainshouldn't be included in the list of labels. I've escalated this issue to the development team to remove it in the next update of Meta Box plugins.Peter
ModeratorHello,
I try to reproduce the issue but don't see that. The field value is saved to the database as well. Does this happen with other field types? Do you see any errors in the Console tab of the browser inspect tool or in the WP debug log?
Also, can you please try to increase the PHP setting
max_input_varsas I mentioned in the previous topic
https://support.metabox.io/topic/cannot-save-new-fields-or-change-location-to-user/Peter
ModeratorHello Yumiko,
I'm not able to reproduce the issue on my demo site. If a field has the setting
hide_from_front, it will be excluded from the frontend form. That means the input field is not available in the HTML structure so it isn't possible to save an empty value for that field.Peter
ModeratorHello,
There isn't a JavaScript event name
rwmb_frontend_after_savelike that. If you want to use the WordPress hook with PHP code, you can use the hookrwmb_frontend_after_save_post
Following the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#post-actionsIf you are not familiar with JS code, we offer a customization service with an extra fee. Please contact us here to get more details https://metabox.io/contact/
September 29, 2025 at 10:01 PM in reply to: Warning: A non-numeric value encountered... preventing from logging-in #49064Peter
ModeratorHello Richard,
Thanks for reaching out.
Do you register the meta box and custom fields with code and pass a string to the
columnsfield setting? Following the documentation https://docs.metabox.io/extensions/meta-box-columns/You can review all registered custom fields and see if a string is assigned to the
columnsfield setting, it should be a numeric value.September 29, 2025 at 9:23 PM in reply to: ✅Advanced image field not functional on some posts #49062Peter
ModeratorHello,
I've replied to that ticket but didn't receive any reply. Can you please recheck your inbox?
It looks like a database issue. I've deleted the post meta "additional_images" in the database, table wp_postmeta that is associated with the post ID 241 and the field image advanced works properly.screenshot https://imgur.com/BjRpXi2
Peter
ModeratorHello Patrick,
Thanks for reaching out.
Can you please share the page URL where I can see the issue and some screenshots of the term in the admin area? I'm not fully understand the issue with taxonomy displayed on your site.
Peter
ModeratorHello,
If you use the builder, you need to add the
key-valueto the query args instead ofvalue-value. Please check this screenshot https://imgur.com/IkUEn0vPeter
ModeratorHello,
Thanks for sharing the solution.
Yes, the taxonomy field doesn't work in a group as a subfield. If you want to use the subfield, please use the field taxonomy_advanced.
Peter
ModeratorHello,
You can follow the WordPress documentation to query posts by custom field value and correct the field ID, value that is saved to the database in the code.
For example:
'query_args' => [ 'meta_key' => 'event_state', 'meta_value' => 'on', ],https://docs.metabox.io/fields/post/#settings
https://developer.wordpress.org/reference/classes/wp_query/#custom-field-post-meta-parameters -
AuthorPosts