Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Tanja,
Yes, it is possible. You can use the JS option
maxDateto set the max date available for selecting. Please check these screenshots
https://ibb.co/dwZCS28f
https://ibb.co/zLG6xfBAnd follow the documentation
https://api.jqueryui.com/datepicker/#option-maxDate
https://docs.metabox.io/fields/date/#settingsPeter
ModeratorHello Tanja,
Yes, it is possible. Each relationship meta box has an ID:
{$relationship_id}_relationships_fromand{$relationship_id}_relationships_to. You can use the ID in the outside condition code to show/hide the relationship meta box.For example:
add_filter( 'rwmb_outside_conditions', function( $conditions ) { $conditions['#post-to-page_relationships_to'] = [ 'hidden' => ['listing_package', 'free'], ]; return $conditions; } );post-to-pageis the relationship ID, screenshot https://ibb.co/n8QV8FCQPeter
ModeratorHello,
You can edit the post and re-update the map field to add/update the zoom level. Or you can access the database and update the field value manually with the format I shared above.
https://docs.metabox.io/fields/map/#dataPeter
ModeratorHello Mona,
If you have a refund request, please contact us here https://metabox.io/contact/
Our team will get in touch with you shortly.June 20, 2025 at 10:02 PM in reply to: Show Meta Box Field Group on the user creation page (user-new.php) #48482Peter
ModeratorHello Adrien,
Currently, it isn't possible to add the custom fields to the add new user page. This feature request is on our backlog for development. It will be included in future updates.
Thanks.
Peter
ModeratorHello,
No, the setting
translationonly supports custom fields or meta boxes created by the Meta Box plugin. For other fields or WordPress default fields, please contact Polylang support to get further assistance.Peter
ModeratorHello Chris,
WordPress itself doesn't support creating a post type of a post type like that. Each post type is working independently from other post types.
Using Meta Box, you can use MB Relationships to set a connection between posts of 2 post types. But it doesn't support customizing the post type URL as on your Drupal site.
Please follow the documentation https://docs.metabox.io/extensions/mb-relationships/June 18, 2025 at 9:05 PM in reply to: MB jQuery Validation - Scroll To Highlight Error - file_upload - Issue #48471Peter
ModeratorHello,
Currently, I don't have more information from the development team regarding this issue. I will let you know when it is fixed.
Thank you.
Peter
ModeratorHello,
Can you please follow the documentation to set the field group translation to Translate and recheck the issue with the field value when duplicating the post?
https://docs.metabox.io/integrations/polylang/#custom-fieldsPeter
ModeratorHello,
I got the issue. Please add the setting
translationto the meta box settings to translate the field or copy the value to the translation post when duplicating the post. For example:$meta_boxes[] = [ 'title' => __( 'Job Specific Information', 'awaw' ), 'id' => 'obr_special_info', 'post_types' => 'book', 'context' => 'normal', 'translation' => 'translate', // here 'fields' => [ ... ]Please follow the documentation https://docs.metabox.io/integrations/polylang/#custom-fields
Peter
ModeratorHello Graham,
I'm not able to reproduce the issue on my demo site. The field values are copied to the translation post. However, I think that it is not necessary because you also need to add the translation value to all fields on the translation post.
If the image field is not working on your site, can you please export the field group to a JSON file and share it here? I will import the field group to my site and check the issue.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorNo, please try to download another plugin from WordPress.org and upload it to your site instead of installing from the Plugins page.
https://downloads.wordpress.org/plugin/contact-form-7.6.0.6.zipAlso, do you try to contact your hosting support and ask them about the "UploadGuard Blocked" that prevents installing plugins on your site?
June 17, 2025 at 10:35 PM in reply to: Conditional Logic Switch/ Field group without updating the page #48464Peter
ModeratorHello,
>> I would like the field group to be automatically shown/ hidden when the switch is activated
Yes, it should work like that because the Conditional Logic feature will show/hide the elements using JavaScript. Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.June 16, 2025 at 10:51 PM in reply to: Conditional Logic Switch/ Field group without updating the page #48457Peter
ModeratorHello Oli,
Is the element
Framing-optionscreated by Meta Box plugin? If so, you can simply follow the documentation to show/hide the field based on the switch field
https://docs.metabox.io/extensions/meta-box-conditional-logic/#with-uiIf not, it is a custom element on the editing page, you can follow this one to use conditional logic outside of the field group
https://docs.metabox.io/extensions/meta-box-conditional-logic/#using-outside-field-groupsJune 16, 2025 at 10:45 PM in reply to: ✅First cloneable group row isn’t shown in backend and then deleted #48456Peter
ModeratorHello Fabian,
Thanks for reaching out.
If you are using the latest version of Meta Box AIO 2.2.2, you can deactivate all other Meta Box plugins, including Meta Box.
Can you please share the screenshot of the state
first group row is hidden but contains a saved value? Also, please export the field group to a JSON file, share it with me and steps to reproduce the issue. I will check this on my demo site.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import -
AuthorPosts