Forum Replies Created
-
AuthorPosts
-
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.Peter
ModeratorHello Kevin,
You might need to use the function
rwmb_get_registry()to get all fields. Please read more here https://docs.metabox.io/functions/rwmb-get-registry/Peter
ModeratorHello Andrew,
Please update Meta Box, MB extensions to the latest version, then deactivate all other plugins, switch to a standard theme of WordPress and migrate the field group again.
If it does not help, can you please share some screenshots of the issue and export the field group to a JSON file and share it here? I will take a look.
Please read more on the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Peter
ModeratorHello,
Currently, there are no capabilities like that for other default post types of Meta Box, just for CPT
meta-box(Field Groups). It would be a feature request and I will inform our development team to consider supporting this feature in future updates.Peter
ModeratorHello,
I see the field values are saved to the custom table correctly. In the View code, the field "Choose an option" has the ID
choose_an_optionbut you add the IDchoose_an_optionsto get the value and it returns nothing.{% set options = post.choose_an_options.value %}Peter
ModeratorHello,
There are 3 capabilities registered to control the field group, not the relationship. You can find them in the file /meta-box-builder/src/PostType.php
But Meta Box does not support controlling the capabilities for user roles, it is the feature of a third-party plugin. I hope that makes sense.Peter
ModeratorHello,
It looks like there is a plugin that modifies the WordPress query. I've deactivated all plugins except Meta Box, MB AIO then the relationship posts display as well on the frontend.
-
AuthorPosts