Forum Replies Created
-
AuthorPosts
-
May 7, 2023 at 9:36 PM in reply to: ✅Shortcodes (from other plugins) not rendering in Metabox fields #41744
Peter
ModeratorHello Josh,
You need to add the code to the template file that displays post content in your theme folder, please read more here https://docs.metabox.io/displaying-fields-with-code/
If you are not able to accomplish the task, please contact us here https://metabox.io/contact/ with a customization service request. Our development team will help you with a small fee.
May 7, 2023 at 9:32 PM in reply to: 'A post type mismatch has been detected.' error when saving custom post type #41743Peter
ModeratorHello,
It could be an issue when you use the field ID as one of the reserved terms of WordPress, please check them here https://codex.wordpress.org/Reserved_Terms
You can add the prefix with your own value to fix this issue.
Peter
ModeratorHello,
when is converted from Toolset to Metabox and change the image to image advanced is just not working correct.
Can you please share some screenshots of the issue when you change the field type to image_advanced (before and after)? Please check the data format of the field value in the database also (table wp_postmeta).
Peter
ModeratorHello,
Can you please let me know the image field work after migrating from Toolset to Meta Box, without any specific theme/plugin? (Data and displaying when editing a post)
The field
imagehas the same data format saved to the database as the fieldimage_advanced. After migration, you can go to Meta Box > Custom Fields > Edit the field group > Edit the field > Change the type fromimagetoimage_advanced.Additionally, we do not maintain the integration/compatibility with Kadence, you can check the list here https://docs.metabox.io/compatibility/
So if you have an issue when using Kadence, please contact their support for further assistance. Refer to our support policy https://support.metabox.io/topic/support-policy/?swcfpc=1Peter
ModeratorHello,
I do not see that issue on my local site, screenshot https://monosnap.com/file/G6nSExPrhxmRCk6HJqPoyejwh4YKdM
even with a subfield inside a group.You can try this again with a fresh install of WordPress and Meta Box plugins to see how it goes.
Peter
ModeratorHello Steve,
If you add more custom fields to the Org Info post type, add the field value and save changes, does the value saved as well? If not, I think you should increase the PHP settings
max_input_varsto a higher value like 100k, 500k ...May 6, 2023 at 8:34 AM in reply to: Populate Autocomplete Field with saved data from Database #41729Peter
ModeratorHello,
You can read the list of filters that are supported by Meta Box here https://docs.metabox.io/category/filters/
But I think the filter
rwmb_{$field_id}_field_htmlis a good way to set the field value by coding before displaying it on the editing page.Or you can use the custom table supported by Meta Box to save the field value to a custom table https://docs.metabox.io/extensions/mb-custom-table/
Otherwise, you should contact an expert developer to help you with your custom table.
Peter
ModeratorHello,
Can you please share your callback function? I've tested to create a callback function like this
function admin_get_exteriors_from_options() { return [ 'red' => 'Red', 'green' => 'Green', 'blue' => 'Blue' ]; }And it works as well on my local site. Here is the field group generate code:
$meta_boxes[] = [ 'title' => __( 'my custom fields', 'your-text-domain' ), 'id' => 'my-custom-fields', 'priority' => 'low', 'fields' => [ [ 'name' => __( 'Group', 'your-text-domain' ), 'id' => $prefix . 'group_po9o7bashyc', 'type' => 'group', 'fields' => [ [ 'name' => __( 'Select', 'your-text-domain' ), 'id' => $prefix . 'select_34gpvjxnu6a', 'type' => 'select', 'options' => admin_get_exteriors_from_options(), ], ], ], ], ];Peter
ModeratorHello Will,
Which field type you are using? Let me try to reproduce the issue on my local site.
May 5, 2023 at 6:59 PM in reply to: ✅Using show/hide conditional logic with Builder - takes over 1 minute to show #41722Peter
ModeratorHello Dave and Monden,
Please share your exported field group (JSON file) with me via this contact form https://metabox.io/contact/
I will take a closer look.
Peter
ModeratorHello Charis,
Kadence theme/block is not compatible with Meta Box so you can try to use the single_image field instead of image_advanced field.
Peter
ModeratorHello,
The taxonomy field set and get the post terms so if you use many taxonomy fields, they would display the same value. You can use the field taxonomy_advanced to set the post meta. Please read more on the documentation
https://docs.metabox.io/fields/taxonomy/
https://docs.metabox.io/fields/taxonomy-advanced/May 5, 2023 at 6:42 PM in reply to: 'A post type mismatch has been detected.' error when saving custom post type #41718Peter
ModeratorHello,
I'm not sure what causes the issue on your site, you can try to deactivate all plugins except Meta Box, MB extensions, and switch to a standard theme of WordPress to see if it helps.
You can also follow this article to fix this issue https://wordpress.org/support/topic/cannot-add-new-page-or-post-corrupted-db/Peter
ModeratorHello,
MB Blocks is a premium plugin so it is not compatible with WPML currently. And thanks to @inforootscope-co to share a solution, keep up the good work.
May 4, 2023 at 10:26 PM in reply to: Group Fields not showing in Oxygen Builder dynamic data interfface #41708Peter
ModeratorHello,
In case of using Oxygen 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/ -
AuthorPosts