Forum Replies Created
-
AuthorPosts
-
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-parametersPeter
ModeratorHello,
I'm not sure how other user profile forms state "Protected" in the Cloud Console. After searching around, here is my understanding of the reCaptcha key:
You are looking at two different dashboards.
- Admin console (recaptcha/admin): shows traffic for Classic reCAPTCHA v2/v3 keys (the ones you registered at google.com/recaptcha).
- Google Cloud Console (security/recaptcha): shows metrics/logs only for reCAPTCHA in Google Cloud (reCAPTCHA Enterprise tiers) keys that live in a Cloud project. Classic keys don’t populate this dashboard.
However, let me ask the development team to recheck it and I will get back to you when I have more information.
Peter
ModeratorHello,
As I can understand, the view template still works well on your site, just except for the editing. Is that right? So in order to edit the template and customize more, please renew the license or purchase a new one and activate the license key on your site.
Thanks.
Peter
ModeratorHello,
Thanks for reaching out.
As I can see in the screen record, the taxonomy field value is saved and displayed in the frontend, but not displayed in the admin area. Can you please export the field group to a JSON file and share it with me? I will check it on my site and see if there are any issues with it.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
September 24, 2025 at 10:21 PM in reply to: ✅Advanced image field not functional on some posts #49039Peter
ModeratorHello,
The image advanced field works well on my site when editing or creating any posts. Please share your site admin account via this contact form https://metabox.io/contact/ and let me know where to see the issue. I will take a look.
Peter
ModeratorHello Martina,
Thanks for reaching out.
How do you output the field URL value? Please share some screenshots of this.
When you output the field value with PHP code, you can insert the attribute into the HTML tag as well. Here is an example:
$url = rwmb_meta( 'url_field_id' ); echo "<a href={$url} rel='sponsored'>output URL field</a>";Please check this screenshot https://imgur.com/Ltdu2B5
and follow the documentation https://docs.metabox.io/displaying-fields-with-code/September 23, 2025 at 10:29 PM in reply to: ✅Advanced image field not functional on some posts #49032Peter
ModeratorHello Amanda,
Thanks for reaching out.
Can you please export the field group to a JSON file and share it with me? I will import the field group to my site and see how it work.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorHello,
The token on your login page is generated properly, please check this screen record https://drive.google.com/file/d/198vV2sNPgC6ye83hbOeBmFpjppJU9eSF/view?usp=sharing
I also setup a test site on TasteWP to double-check the issue and still don't see it, screenshots https://imgur.com/a/LbQb77U
Here is the page with the user login form https://understoodvolleyball.s6-tastewp.com/mb-login-page/You can login to the test site with this info
https://understoodvolleyball.s6-tastewp.com/wp-admin
Username: admin
Password: BLp957P9nyANote: it will expire in 2 days.
-
AuthorPosts