Forum Replies Created
-
AuthorPosts
-
June 4, 2025 at 10:26 PM in reply to: Can I have more than two front-end submission lists checked in one place? #48374
Peter
ModeratorHello,
I'm afraid that it isn't possible. You should use one frontend form on a page instead of multiple forms. Reference https://support.metabox.io/topic/multiple-front-end-forms-on-one-page-and-url-parameter-queries/
Let me know if you have any questions.
Peter
ModeratorHello Marcus,
Thank you for your feedback.
I've escalated this issue to the development team. It should be fixed in the next update of Meta Box AIO plugin.
Peter
ModeratorHello,
Yes, please keep using the single plugin MB Divi Integrator. I've reported this issue to the development team to fix it soon. The fix for this issue should be included in the next update of MB AIO.
Thank you.
Peter
ModeratorHello,
1. Yes, but we already have a note in the documentation
If you have a Google Maps field in your field group, then you can set the Google API key once, either for the Geolocation extension (as above) or for the map field. No need to enter the same key for both of them.You can add the API key to the map field and enable
'geo' => true,for the field group settings. I will inform the content team to update the documentation.2. The field
cityis supported when using Open Street Map (OSM) instead of Google Maps. So the documentation is still valid. Following the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#address-fieldPeter
ModeratorHello,
Do you use the HPOS feature of WooCommerce? If so, please switch to the legacy option "WordPress posts storage" to use the MB field group when editing the order.
June 3, 2025 at 9:34 PM in reply to: ℹ️Integrating GDPR-Compliant Math CAPTCHA into MB Frontend Submission #48363Peter
ModeratorHello,
I'm afraid that there isn't a way to add a custom captcha to the frontend submission form, only Google reCaptcha is supported.
I will inform the development team to consider supporting an option to add a custom captcha to the frontend form.Thank you.
June 2, 2025 at 11:43 PM in reply to: Can I have more than two front-end submission lists checked in one place? #48362Peter
ModeratorHello Lee,
Do you mean to have a frontend submission form and a frontend dashboard on the same page? After the user submits a post, they can edit the post on the same page.
If so, you can add two frontend shortcodes or blocks on a page as per your requirements.
Peter
ModeratorHello Topher,
On the page https://goheartside.com/business-type/coffee-shop/
I see you are using Open Street Map (OSM field), maybe to fix the issue temporarily.If there is an error message in the Console tab of the browser devtool, there could be 2 issues:
1. The map API key isn't configured correctly.
2. Another plugin or module also uses another map API key and it can affect the map field of Meta Box.You can recheck point 1 in your Google account. For point 2, try to deactivate all plugins except Meta Box plugins and switch to a WordPress theme.
Let me know how it goes.
Peter
ModeratorHello,
I don't see that issue when activating Meta Box AIO and MB Divi Integrator, here are some screenshots on my demo site https://imgur.com/a/H4kO6Hr
Can you please edit the page with Divi, add a new Meta Box Field module and recheck the issue?
Peter
ModeratorHello,
This information is noted in the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#field-group-settings
If you have a Google Maps field in your field group, then you can set the Google API key once, either for the Geolocation extension (as above) or for the map field. No need to enter the same key for both of them.In this case, you can add the API key to the
mapfield settings and use this'geo' => truefor the meta box settings. Also, the address field must start withaddress_xxxinstead oflocation_addressThis code works properly on my local site
add_filter( 'rwmb_meta_boxes', function ( $meta_boxes ) { $meta_boxes[] = [ 'title' => 'Event details', 'post_types' => 'page', 'geo' => true, 'fields' => [ // Map field. [ 'id' => 'location_map', 'type' => 'map', 'std' => '51.5074,-0.1278,15', 'address_field' => 'location_address', 'api_key' => 'xxxxxxxx' ], // Address field. [ 'id' => 'address_location', 'name' => __( 'Address', 'text-domain' ), 'type' => 'text', 'placeholder' => 'Enter address...', 'desc' => __( 'Enter the complete address.', 'text-domain' ), 'required' => true, ], // Hidden field to store the city and country [ 'id' => 'city_country', 'type' => 'text', 'binding' => 'locality + " " + country', 'std' => 'null', ], // Other custom fields.... ], ]; return $meta_boxes; } );Peter
ModeratorThanks for sharing the details. I will forward it to the development team to check and fix this issue.
Have a nice day!
Peter
ModeratorHello,
Can you please share the full error trace in the debug log? If you know how to reproduce the issue with clear steps, please let me know how to do that. I will try to reproduce the issue on my demo site and investigate it.
Refer documentation https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
Peter
ModeratorHello,
I suggest you try steps below to troubleshoot the issue:
1. Create a new field group, add a Google Map field and an address field; no need to use the Geolocation feature.
2. Add your API key to the map field and check if the map field works properly.=> If yes, you can try to add the API key to the map field in the field group that you use the Geolocation and recheck this.
=> If not, your API key isn't correct or some services are not enabled for using the Geolocation.
https://docs.metabox.io/extensions/meta-box-geolocation/#geolocation-apiPeter
ModeratorHello Stephane,
Thanks for reaching out.
I can see the files under the folder /scripts/ are missing in the MB AIO plugin. Can you please install the single plugin MB Divi Integrator and see if it helps?
https://metabox.io/plugins/mb-divi-integrator/Peter
ModeratorHello Keith,
If you have any questions related to Slim SEO, please contact us here https://metabox.io/contact/
Our support team will get in touch with you shortly.Thank you.
-
AuthorPosts