Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Ronny,
Thanks for reaching out.
Can you please share a screenshot of the relationship created? Do you leave the Taxonomy select field empty?
https://imgur.com/jqZN12BApril 22, 2026 at 10:42 PM in reply to: Broken re-order posts: need support for WordPress presistent caching API #49923Peter
ModeratorHello,
While waiting for the update of MB CPT, you can edit the file
/mb-custom-post-type/src/PostTypeReorder.php, on line 266, clear the object cache after updating the post parent.$wpdb->update( $wpdb->posts, [ 'post_parent' => $item['parent_id'] ? $item['parent_id'] : 0, 'menu_order' => $item['order'], ], [ 'ID' => $item['id'] ] ); wp_cache_flush_group( 'posts' );Let me know how it goes.
Peter
ModeratorHello Wendell,
Thanks for reaching out.
Currently, there isn't an option to integrate Cloudflare Turnstile to MB Frontend Form. However, if you want to add some HTML code to the form, like Google Tag Manager, you can use the action hook
rwmb_frontend_before_submit_button. Refer to the documentation
https://docs.metabox.io/extensions/mb-frontend-submission/#general-hooks
https://developers.cloudflare.com/turnstile/get-started/Peter
ModeratorHello,
I'm also not able to reproduce the issue on my side. If you have more information about this issue or steps to reproduce it, please let me know.
Thanks.
Peter
ModeratorHello,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.Thank you.
Peter
ModeratorHello Jon,
Currently, we don't support customization code like the custom field type. However, can you please let me know the issue that you have (screenshots or a screen record)? I will check it and see if there's something we can improve on our side.
Peter
ModeratorHello,
I don't see any issue when using your code to create a new field group and save the clone subfields to the database. Can you please share a screen record of the issue on your site? Does it happen with new posts or existing posts?
Peter
ModeratorHello Lukas,
Our development team confirms that we don't have any restriction rules for the link https://packages.metabox.io/
I also notice that this URL isn't correcthttps://packages.metabox.io/<KEY>/packages.jsonas you can see in my demo code above. The correct URL ishttps://packages.metabox.io/<KEY>/without packages.json.Can you please share your composer file and a screen record of how you setup the Github action?
Peter
ModeratorHello Scot,
Thanks for reaching out.
Yes, the extension MB Include/Exclude doesn't work with custom field settings, it works with meta box settings only. To hide a custom field, you can use the extension MB Conditional Logic
https://docs.metabox.io/extensions/meta-box-conditional-logic/Peter
ModeratorHello Lukas,
We didn't change anything on our side. It could be related to the Cloudflare protection that we are using. Let me ask the development team to check the issue and I will get back to you as soon as possible.
Thank you.
Peter
ModeratorHello Lukas,
Thanks for reaching out.
I've tested to install Meta Box plugins via Composer but didn't see any issues
{ "repositories": [ { "type": "composer", "url": "https://packages.metabox.io/YOUR_LICENSE_KEY" } ], "require": { "wpmetabox/mb-custom-post-type": "^2.3", "meta-box/meta-box-group": "dev-master", "meta-box/mb-settings-page": "dev-master" }, "extra": { "installer-paths": { "vendor/meta-box/{$name}": [ "vendor:wpmetabox", "vendor:meta-box" ] } }, "autoload": { "files": [ "vendor/wpmetabox/mb-custom-post-type/mb-custom-post-type.php", "vendor/meta-box/mb-settings-page/mb-settings-page.php", "vendor/meta-box/meta-box-group/meta-box-group.php" ] } }Save the code to a file composer.json and replace
YOUR_LICENSE_KEYwith your license key and runcomposer install. Following the documentation https://docs.metabox.io/composer/April 7, 2026 at 9:45 PM in reply to: How to auto-populate a text field with postal_code from Google Maps Autocomplete #49895Peter
ModeratorHello,
I got the issue. You need to add
geo.api_keyto the field group settings and set the address field ID to start withaddress_. Please check this screenshot https://imgur.com/a/MIk8SMy
and follow the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#geolocation-apiPeter
ModeratorHello,
I can see and reproduce the issue on my site. It happens when you use the WYSIWYG field on a settings page. I've escalated the issue to the development team to fix it as soon as possible.
Thank you.
April 7, 2026 at 8:39 PM in reply to: How to auto-populate a text field with postal_code from Google Maps Autocomplete #49892Peter
ModeratorHello,
I'm not able to reproduce the same issue on my site. Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.April 6, 2026 at 9:46 PM in reply to: How to auto-populate a text field with postal_code from Google Maps Autocomplete #49889Peter
ModeratorHello Jayron,
Thanks for reaching out.
If you have a different field ID from the address component ID
postal_code. You can use the custom binding, following the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#custom-bindingand screenshots https://imgur.com/a/tRVPozs
-
AuthorPosts