Forum Replies Created
-
AuthorPosts
-
January 2, 2024 at 9:41 PM in reply to: Metabox group - Trying to diplay a nested group withion a group #44202
Peter
ModeratorHello Joe,
Please export the field group to a JSON file and share it here. I will help you to check the issue.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importJanuary 2, 2024 at 8:15 PM in reply to: With Meta Box AIO activated, cannot access theme customizer #44201Peter
ModeratorHello Kevin,
Supporting an issue from a third-party theme is beyond our scope of support. You can contact the theme support to get further assistance. Please read more about our support policy here https://support.metabox.io/topic/support-policy
January 2, 2024 at 8:11 PM in reply to: Group’s title using variables is not working for FAQs #44200Peter
ModeratorHello,
I understand that you want to display the question value in the group title. Please check if you have added the field ID prefix in the field group settings.
If you want to display question value in the frontend, please follow the documentation https://docs.metabox.io/extensions/meta-box-group/#getting-sub-field-values
December 29, 2023 at 9:38 PM in reply to: Group’s title using variables is not working for FAQs #44186Peter
ModeratorHello,
Do you use the field ID prefix for the custom fields? Screenshot https://imgur.com/a/SR5xley
If yes, you should add the prefix to the
questionfield ID.December 29, 2023 at 9:18 PM in reply to: ✅PHP: BricksBuilder Front-End Form & Meta Box CPT – Image Upload Challenge #44185Peter
ModeratorHello,
In the case of using Bricks Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/Peter
ModeratorHello,
Please use the version 5.9.0 to show the icon field. The development team is checking the issue and I will let you know when I have any information.
Peter
ModeratorHello,
The default meta box Category of WordPress doesn't have that option. You can use the field
taxonomy, it sets the post term like the meta box Category.Peter
ModeratorHello Joe,
Unfortunately, there isn't an option to sort the connection items in the admin area.
Peter
ModeratorHello,
There is an issue with the plugin MB Revisions and the development team is working on it. It will be fixed in the next update of the plugin.
Thank you.
Peter
ModeratorHello Tanya,
You can use the field type
taxonomyortaxonomy_advanced, there is an option to select all terms of a taxonomy, screenshot https://imgur.com/3h12Pdy
Follow the documentation
https://docs.metabox.io/fields/taxonomy/
https://docs.metabox.io/fields/select-advanced/December 23, 2023 at 10:57 AM in reply to: ✅From user to post not handling more that 10 connections #44165Peter
ModeratorHello Mauro,
This issue has been added to our development queue and will be fixed in future updates of the plugin. Thank you.
December 23, 2023 at 10:44 AM in reply to: MB Relationships - Database error for relationship between users_to_posts #44164Peter
ModeratorHello,
Unfortunately, I cannot reproduce the error message issue on a fresh installation of a multisite environment, screenshots https://imgur.com/a/AArPx3H
I test with a site from https://instawp.com/
December 22, 2023 at 10:46 PM in reply to: See meta-fields when editing translated pages with WPML #44162Peter
ModeratorHello Luca,
If you want to translate the custom field value with WPML, please follow the documentation https://metabox.io/translate-custom-fields-with-wpml/
If you edit the page in the second language and do not see the custom field, I think you can try to set the post type
meta-boxin WPML > Settings to Not translatable to fix the issue. If it doesn't work, I recommend contacting WPML support to get more information.December 22, 2023 at 10:32 PM in reply to: Elementor Icon Box meta data does not Display on frontend #44161Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a look.December 22, 2023 at 10:24 PM in reply to: how can i disable metaboxes if gutenberg editor is enabled #44160Peter
ModeratorHello,
You might need to use the code to check the block or classic editor is available when editing the post and registering the meta box. For example:
if( code_check_editor_here ) { add_filter( 'rwmb_meta_boxes', 'your_prefix_function_name' ); } function your_prefix_function_name( $meta_boxes ) { $prefix = ''; $meta_boxes[] = [ ... ]; return $meta_boxes; } -
AuthorPosts