Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I don't see any issues based on your screenshot. Please share your site credentials by submitting this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello,
Please share some screenshots of the relationship settings and the relationship box on the editing page. I will help you check the issue.
June 24, 2025 at 10:13 PM in reply to: Manual field groups not showing up on setting page after adding groups via code #48504Peter
ModeratorHello François,
Thanks for reaching out.
Can you please share the code or the custom plugin that you used to create the custom settings page? I will add it to my site and investigate the issue.
Peter
ModeratorHello,
Did you add the hash character (#) before the relationship ID as I write down in the previous reply? For example:
$conditions['#listing-to-event_relationships_to'] = [ 'hidden' => ['listing_package', 'free'], ];Peter
ModeratorHello Aidan,
Thanks for reaching out.
If you want to display more addresses (pins) on a map, please follow this tutorial
https://docs.metabox.io/tutorials/display-listings-on-map/Note: Supporting the customization code is beyond our scope of support. If you are not able to complete the task, we offer a customization service with an extra fee. Please contact us here for more details https://metabox.io/contact/
Peter
ModeratorHello,
Please edit all custom fields and ensure that the total number of columns of fields per tab is equal to 12 or a multiple of 12: https://ibb.co/xKhC57Qv
Refer to the documentation https://docs.metabox.io/extensions/meta-box-columns/#notes
Let me know if it helps.
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-fields -
AuthorPosts