Forum Replies Created
-
AuthorPosts
-
January 27, 2023 at 10:44 PM in reply to: MB Block select_advanced product categories stored per page #40322
Peter
ModeratorHello there,
The field taxonomy does not work with custom block or group field because it set post terms, no field value is saved. If you want to use the taxonomy selection, please use the field taxonomy_advanced.
Please read more on the documentation
https://docs.metabox.io/fields/taxonomy/
https://docs.metabox.io/fields/taxonomy-advanced/January 27, 2023 at 10:21 PM in reply to: Storing cloneable group with datetime field programmatically #40321Peter
ModeratorHello,
Can you please share the code that you use to update the group field value? I see it works as well on my demo site. Here is an example:
add_action( 'init', function() { $values = []; $values[0] = [ 'provider_management_group_note' => 'asdf1234' ]; $values[1] = [ 'provider_management_group_note' => '1234asdf' ]; rwmb_set_meta( 67516, 'provider_management_group', $values ); }, 99 );Peter
ModeratorHello there,
Thanks for your feedback.
This feature is added to the development queue and our development team will work on this feature. Hopefully, it will be available as soon as possible.
Peter
ModeratorHello there,
I think you can change your post type slug back to the previous one. Or use a third party plugin to change the post type of the post https://wordpress.org/plugins/post-type-switcher/
Peter
ModeratorHello Thomas,
Can you please share some screenshots of the issue? And the code in the View editor to display the field value, I will help you to check the issue.
January 23, 2023 at 10:03 PM in reply to: ✅Get CPT title for hidden custom form field in frontend subscription form #40290Peter
ModeratorHello,
Thanks, I understand your case. So if you want to add the relationship automatically, please refer to this topic https://support.metabox.io/topic/connecting-child-posts-to-a-parent-post-automatically/#post-35799
and the documentation https://docs.metabox.io/extensions/mb-relationships/#addLet me know how it goes.
Peter
ModeratorHello there,
Thanks for your feedback.
The mode hsl of the field color picker field does not look to work. I've escalated this to the development team to check it and get back to you later.
January 21, 2023 at 9:01 PM in reply to: ✅Get CPT title for hidden custom form field in frontend subscription form #40278Peter
ModeratorHello there,
So how the title of the project is processed? Do you want to add this title as a custom field to the subscription post created after submitting the form? Or create a relationship between the current project post and the subscription post created?
Peter
ModeratorHello,
In case of using WPGrid 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/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. -
AuthorPosts