Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I don't see that issue on my end, here is the screen record https://monosnap.com/file/M2QPFXucFX9PAVkRRg87QvVcIqeB9Y
If the conditional logic still does not work in the customizer on your site, please share your site credentials to the contact form https://metabox.io/contact/
I will help you to check the issue.Peter
ModeratorHello Joe,
Meta Box currently does not support a function to get row index for the clone field like that. I will inform the development team to consider supporting this in future updates.
January 19, 2023 at 11:46 PM in reply to: How to set Title on CPT from custom field value instead of Auto-Draft defaults #40265Peter
ModeratorHello Dustin,
I think you should keep supporting the Title of the CPT. Then use the code to update the whole post title by the field value after saving the post.
Peter
ModeratorHello Luca,
The options of the select field look incorrect when setting up. Please change it to this one and let me know if it works.
'fields' => [ [ 'name' => __( 'Select', 'your-text-domain' ), 'id' => $prefix . 'select_test_1', 'type' => 'select', 'options' => [ 'a' => __( 'A', 'your-text-domain' ), 'b' => __( 'B', 'your-text-domain' ), 'c' => __( 'C', 'your-text-domain' ), ], ], [ 'name' => __( 'Text', 'your-text-domain' ), 'id' => $prefix . 'text_nhbsf837xqg', 'type' => 'text', 'visible' => [ 'when' => [['select_test_1', '=', 'b']], 'relation' => 'or', ], ], ]Peter
ModeratorHello Dave,
Do you mean to add some grid lines to the group field and subfields for an easier look? If yes, can you please give some examples of the expected view on your own?
Peter
ModeratorHello Dirk,
You can try to pass a specific post ID to the helper function and see if it works correctly.
$customfield = rwmb_get_value($customefield_ID, '', 123);If it works, there should be something wrong with the array
$connected_posts_ids.January 17, 2023 at 10:42 PM in reply to: ✅Remove Parent Page Slug from the permalink CPT (hierichal option is "on") #40252Peter
ModeratorHello,
Meta Box does not support an option to remove the parent page slug from the permalink. You can use a third party plugin to do that. Please read more on this article https://www.greengeeks.com/tutorials/edit-the-child-page-url-to-remove-parent-slug-in-wordpress/
Peter
ModeratorHello Stan,
Did you try to test uploading webp images with other image fields or featured image of WordPress? Does the issue happen with only the image_advanced field?
Peter
ModeratorHello Lordango,
Please share your site credentials (wp-admin and FTP) to the contact form https://metabox.io/contact/
I will help you to investigate the issue.Peter
ModeratorHello there,
Meta Box does not support translating custom post type slug. If you use a translation plugin to translate it, please contact the plugin support to get further assistance.
If you think it is an issue with MB Custom Post Type plugin, you can generate the PHP code and add the code to the file functions.php in your theme folder or a plugin folder to create a post type without the Meta Box builder.Peter
ModeratorHello there,
Please update the plugin Meta Box to the latest version 5.6.15 to fix this issue. Please check it here https://wordpress.org/plugins/meta-box/
Let me know how it goes.
January 16, 2023 at 11:16 PM in reply to: ℹ️Minlenght - How to edit/translate text : Please enter .... or more characters ? #40242Peter
ModeratorHello,
There is no option to edit this text. It is hard-coded in the select2 library file under the meta-box folder. I will inform the development team to consider supporting an option to change this text.
Peter
ModeratorHello Sam,
Thanks for your feedback.
Only some blocks that can be added text will have the color and background color option to select the palette. The custom block of Meta Box is a mix of all custom fields, so I think supporting the color palette as a native option is not a good way. However, I will inform the development team to explore the possibility.
Peter
ModeratorHello Sam,
It is not supported like a standard Gutenberg block. You can use the color palette settings of the color field in the block editor. Please read more here https://docs.metabox.io/fields/color/
Peter
ModeratorHello,
You can also consider increasing the PHP setting max_input_vars to avoid unexpected issues. Please read more here https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/
-
AuthorPosts