Forum Replies Created
-
AuthorPosts
-
April 28, 2023 at 7:43 PM in reply to: Meta Box License Warning On Plugin Activation with MB Bundled #41650
Peter
ModeratorHello,
You can define the license key in a constant in the wp-config.php file to remove the warning. For example:
define( 'META_BOX_KEY', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ123456' ); // Your Meta Box license key.Please read more here https://docs.metabox.io/updates/#can-i-define-the-license-key-via-a-constant-in-wp-configphp
April 28, 2023 at 7:39 PM in reply to: ✅How to make a post of a CPT sticky in DASHBOARD (not frontend)? #41649Peter
ModeratorHello,
It would need custom code to do that and beyond our scope of support. If you are not able to accomplish the task, please contact us here https://metabox.io/contact/
our development team will help you with an extra fee.Peter
ModeratorHello,
I've just changed the post type in the arguments to
licensee{% set args = { post_type: 'licensee', relationship: { id: 'user-provider', from: 7 } } %}and the related posts display in the author box as well, please check this screenshot https://monosnap.com/file/b4f5bIOJmtVDjkFLgJDbgnJ13ujRAl
Peter
ModeratorHello,
After importing the field group to my local site, assigning it to a CPT and adding some field value to a post, I do not see any issue. But I see there are two fields that have the same ID (mbpf_reviewer_group_info) and the option format of some choice fields is not followed the suggested.
I'm not sure why the issue happens on your site, I think you can try:
- Increase PHP settingmax_input_vars, following the documentation https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/
- Set each field with a unique ID
- Set the choice options following the format:value: Label. The value should be in lowercase with alphabet characters and underscores.
For example:
teach_learn: Language preservation and revitalization with special reference to teaching and learningApril 27, 2023 at 7:12 PM in reply to: Unable to use Metabox custom fields with Elementor's Advanced Post widget #41635Peter
ModeratorHello,
If you get the field button text associated with the post then it will not work because the field value of each post will be changed and have different values. I've tested to use a text field from a settings page and it works with the widget "Archive Posts" of Elementor Pro.
Peter
ModeratorHello,
Thanks for your suggestion but I do not see any benefit to do that. What will display on the frontend if the gallery block link to the custom field URL? You can simply create your own gallery images with custom code and output the field value associated with the image.
Peter
ModeratorHello,
I've informed our development team to consider supporting MB Admin Columns and subfields in a group. Hopefully, it will be available in future updates.
Peter
ModeratorHello,
You can upload it to Google Drive or Dropbox and share the link here.
Peter
ModeratorHello,
Meta Box itself does not have an admin menu unless you use other extensions of Meta Box. Please read more here https://docs.metabox.io/installation/#why-dont-i-see-an-admin-menu-after-installing-meta-box
Peter
ModeratorHello,
Please do not share the site credentials in this public support forum, everyone can see it. I've changed the option name and deactivated all other plugins on your site except Meta box, MB AIO and it works correctly.
Can you please confirm it works on your side?
Peter
ModeratorHello,
You can try to follow this tutorial to increase the PHP setting
max_input_varsto fix the issue
https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Let me know how it goes.
Peter
ModeratorHello Pat,
Can you please export the field group to a JSON file and share it here? I will try to import it to my local site and observe if the issue happens.
Peter
ModeratorHello,
Yes, please delete that field from the ACF field group then you can do the migration then.
Let me know how it goes.
April 24, 2023 at 10:18 PM in reply to: How to show values of a parent child post type using custom fields #41600Peter
ModeratorHello,
The argument
post_parent__inaccept an array of post IDs, it does not work with a string likeparent. The MB builder also does not support passing a dynamic value, you need to add specific IDs or use the code to register the custom field to pass the dynamic value.Please read more on the following documentation
https://docs.metabox.io/category/developer-guides/
https://developer.wordpress.org/reference/classes/wp_query/Peter
ModeratorHello,
I got the issue. There is a field type
acfe_post_statuseswhich comes from a third-party plugin, not a native field type of ACF so there is no corresponding field type in Meta Box to display that field and it breaks the field group.I remove this field type from the JSON file and import the field group to my local site and it works correctly.
You can download the fixed JSON file here https://drive.google.com/file/d/18C6EsnKiWQetmaMpSJFUoPEeILYnd8wH/view?usp=share_link
and import it to your site. -
AuthorPosts