Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorYes, it can work with Oxygen, tested it again on my demo site. In Meta Box, cloneable is a field setting, not a separate field.
Read more in the documentation https://oxygenbuilder.com/documentation/templating/meta-box/Peter
ModeratorHello Roland,
Can you please share some lines of error message below the notice the error? If you have the single plugin MB Elementor Integrator and Meta Box AIO activated, please deactivate the single plugin and recheck this issue.
Peter
ModeratorOr use the code to check if the function exists and implement the code, for example:
if ( function_exists( 'mb_register_model' ) ) { // add your code here }Peter
ModeratorHello,
This function is located in the file wp-content/plugins/meta-box-aio/vendor/meta-box/mb-custom-table/functions.php
You can check if the file and function are there. If not, you can download the plugin Meta Box AIO manually from the My Account page and install it on your site to update the plugin.
https://metabox.io/my-account/Peter
ModeratorHello,
You can set the
flattensetting by using the custom settings of the field. Please check this screenshot https://imgur.com/kiiEgca
It is noted in the documentation https://docs.metabox.io/extensions/meta-box-builder/#custom-settingsSeptember 19, 2023 at 10:43 PM in reply to: Related users: Wrong order after drag & drop sorting. #43281Peter
ModeratorHello,
Do you mean to use the code to add the connection? Can you please share the code that you are using?
Peter
ModeratorHello,
Yes, other
mb-post types are created by Meta Box. We save field groups, settings page, relationships ... as posts of a post type. What is the issue in this case?Peter
ModeratorHello,
I think it is possible to do with Meta Box. The repeater feature of ACF is the cloneable setting which is supported for all field types of Meta Box. Refer to the documentation https://docs.metabox.io/cloning-fields/
Peter
ModeratorHello,
For the option group, it isn't possible. But you can try to set the sub-choices like this
function my_custom_callback() { return [ [ 'value' => 'monkeys', 'label' => 'Monkeys', ], [ 'value' => 'king_kong', 'label' => 'King Kong', 'parent' => 'monkeys', ], [ 'value' => 'curious_george', 'label' => 'Curious George', 'parent' => 'monkeys', ], [ 'value' => 'donkeys', 'label' => 'Donkeys', ], [ 'value' => 'eeyore', 'label' => 'Eeyore', 'parent' => 'donkeys', ], [ 'value' => 'guss', 'label' => 'Gus', 'parent' => 'donkeys', ], ]; }and set the setting
flattentofalse. Follow the documentation https://docs.metabox.io/fields/select/#settingsPeter
ModeratorHello Lee,
The field
custom_htmldoesn't have an input field so no need to bypass the sanitization. I think the issue is the Bricks template is not designed to work in the admin area so the CSS code won't load.You can create a custom settings page with code, output the Bricks template and recheck this issue. Follow the documentation https://developer.wordpress.org/plugins/settings/custom-settings-page/
Or contact Bricks support to get more information.Peter
ModeratorHello,
I don't understand the question clearly. Can you please give me more details? Do you want to manage other CPTs by Meta Box CPT plugin?
September 16, 2023 at 3:21 PM in reply to: Users Losing Access to Post Submission with Admin Interference #43262Peter
ModeratorHello,
Can you please confirm that only Meta Box, MB plugins and a default WP theme are activated without any custom code on your site and the issue occurs? If yes, please share your site credentials via this contact form https://metabox.io/contact/
I will take a look.September 16, 2023 at 11:47 AM in reply to: mb_get_block_field() in preview when storage = post_meta #43261Peter
ModeratorHello,
The function
mb_get_block_field()only gets the field value when the block data is saved as attributes (default). If you save the data as post meta, you can use the helper functionrwmb_meta(), for example:WYSIWYG field: {{ mb.rwmb_meta( 'wysiwyg_field_id', '', post_id ) }}September 16, 2023 at 11:22 AM in reply to: Overwriting Yoast Schema with Relationship Content #43260Peter
ModeratorHello Nick,
If you can use the PHP code to generate custom schema data for Yoast, you can also follow the documentation to get the related post and output the related title in your code.
https://docs.metabox.io/extensions/mb-relationships/#getting-connected-itemsPeter
ModeratorHello Matthew,
Sorry for the late reply. Let me answer your questions.
1. Yes, "hide from frontend" does not hide the field by JS code like MB Conditional Logic. It excludes the field from loading like MB Include Exclude does. Please read more in the documentation
https://docs.metabox.io/extensions/meta-box-include-exclude/
https://docs.metabox.io/extensions/meta-box-conditional-logic/2, 3. The custom table created automatically in the builder uses data type TEXT for all columns to be compatible with most fields. Can you please share some screenshots of the field
category_nameand field group settings? Where do you add the shortcode on your site? -
AuthorPosts