Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Marge,
You have to use the Custom settings instead of HTML5 Attributes to set the
bindingfor the field. Please check this screenshot https://ibb.co/NdytFy1Hin the admin area, do you see the
countryfield is populated when typing the address to the Street Address field? Please share a screen record of the geolocation fields in your site admin area, without the Fluent form.Peter
ModeratorHello,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.May 19, 2025 at 10:42 PM in reply to: MetaBox 5.10.9 breaks password reveal icon on change password form #48284Peter
ModeratorThank you for the feedback. This issue has been escalated to the development team and we are working on it to fix the issue soon. The fix for this issue will be included in the next update of MB plugins.
Peter
ModeratorHello Julia,
Yes, you also need to remove the field group from the builder (UI). If it still doesn't work, you can try to copy the code and put it in the file functions.php in the theme folder and recheck the issue.
If it works, I think your custom plugin is loaded before Meta Box plugins so the code doesn't work in this case.Peter
ModeratorHello,
Yes, you can register the custom fields with code and use the extension include/exclude to add the post IDs to the meta box settings. For example:
add_filter( 'rwmb_meta_boxes', 'prefix_include_exclude_demo' ); function prefix_include_exclude_demo( $meta_boxes ) { $meta_boxes[] = array( 'title' => 'Include Meta Box', 'include' => array( // List of post IDs. Can be array or comma separated. Optional. 'ID' => array( 40,271,333,335,273), ...Please follow the documentation https://docs.metabox.io/extensions/meta-box-include-exclude/
May 18, 2025 at 8:40 PM in reply to: MetaBox 5.10.9 breaks password reveal icon on change password form #48276Peter
ModeratorHello,
Do you deactivate the single plugin Meta Box? You can use only one plugin Meta Box AIO to have all features of MB plugins.
May 17, 2025 at 6:03 PM in reply to: ✅Prevent / Intercept Form Submission when radio option is checked? #48272Peter
ModeratorHello Codog,
I'm afraid that it isn't possible to prevent the frontend submission form process on clicking the submit button. If you don't want to reload the page, you can enable Ajax to submit the post without reloading.
Peter
ModeratorHello,
Yes, in the builder, you can select all Events and Pages post to show the field group. If you want to show the field group on some specific posts, please use the code to register the field group. Following the documentation
https://docs.metabox.io/extensions/meta-box-include-exclude/May 17, 2025 at 5:19 PM in reply to: MetaBox 5.10.9 breaks password reveal icon on change password form #48269Peter
ModeratorHello Johannes,
Thank you for your feedback.
I can see the issue on my site. You can use one plugin Meta Box AIO to prevent this issue, it also includes Meta Box in the source.
Peter
ModeratorHello Roderick,
Meta Box doesn't support an option to limit the user to view the post type. You can use a third-party plugin to restrict access to a post type as well, for example https://wordpress.org/plugins/restrict-user-access/
Peter
ModeratorHello Johnson,
Thanks for reaching out.
I'm not sure how you use shortcode and code element on your site with Bricks builder but I see that if you use the PHP code to output the field value, it works properly
echo rwmb_meta( 'textarea_field');You can contact Bricks support and ask them for more information.
Peter
ModeratorHello,
It works properly on my demo site. Please note that the
cityfield is not supported when using Google Maps. You should uselocalityinstead ofcity. Following the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#other-fields
And check my screen record https://drive.google.com/file/d/1dZqoujJ89l3wUoPsHU_p5f4f6jl4faQA/view?usp=sharingMay 14, 2025 at 9:37 PM in reply to: ✅Upgraded to AIO, now meta fields won't display unless free MB is activated #48254Peter
ModeratorThanks for sharing the solution. That issue is noted in the documentation https://docs.metabox.io/functions/rwmb-meta/#why-does-my-site-crash-when-i-deactivate-meta-box
Have a nice day!
Peter
ModeratorThe extension MB Relationships supports managing the connection via Rest API, please check this feature here https://docs.metabox.io/extensions/mb-relationships/#rest-api
May 13, 2025 at 11:08 PM in reply to: ℹ️Corruptet File MB field Group ID gets up to 32mb on a Multisite #48249Peter
ModeratorHello Timo,
Thank you for your feedback.
It looks like the issue reported here https://www.facebook.com/groups/metaboxusers/posts/1739757346641902/
The development team is aware of this issue and we will fix that in future updates. -
AuthorPosts