Forum Replies Created
-
AuthorPosts
-
March 26, 2024 at 10:32 PM in reply to: There is no way to make a Group of Custom Fields Clonable/ with GUI in settings? #45016
Peter
ModeratorHello,
There is an option to make the
groupfield cloneable in the builder (GUI), screenshot https://imgur.com/CqQSxPKThis option is applied for the field only, not the field group (meta box).
Peter
ModeratorHello Jonathan,
Currently, this feature is not supported for the custom field value. I will inform the development team to consider supporting this in future updates.
Peter
ModeratorBecause the
apply_filtersis added in the Meta Box source code. You need to useadd_filterto add the callback function on your side.March 26, 2024 at 8:53 PM in reply to: Custom User Register Form - Errors Upon Validation Checks #45011Peter
ModeratorCan you please answer my questions?
- How do you process the form data after submitting it?
- What happens if you switch to the typepasswordof Meta Box?Thank you.
March 25, 2024 at 11:24 PM in reply to: ✅Fatal error: ($object_id) must be of type int, null given #45008Peter
ModeratorHello,
Thank you for the feedback. I can see the error on my demo site and I also escalated it to the development team to fix the issue soon.
March 25, 2024 at 11:08 PM in reply to: WordPress show_admin_bar disabled and remove icons missing #45007Peter
ModeratorIf you don't see the "Remove" text in the cloneable group title, please try to deactivate all plugins except Meta Box, MB extension plugins and switch to a standard theme of WordPress then check the issue again.
Peter
ModeratorHello,
That could be the issue. Please follow the documentation below to bypass the validation and update the group field value again to see how it goes.
https://docs.metabox.io/sanitization/#bypass-the-sanitizationMarch 25, 2024 at 11:03 PM in reply to: ✅Display custom fields from group of associated posts (not relationship) #45005Peter
ModeratorYou can send the details of the job via this contact form https://metabox.io/contact/
we support a customization service with an extra fee for your specific needs.Peter
ModeratorHello,
I don't see any issue with the relationship code. Please share your site credentials via this contact form https://metabox.io/contact/
I will take a look.March 25, 2024 at 10:43 PM in reply to: ✅mbct_before_update - want to identify if a field has changed #45003Peter
ModeratorHello,
Thank you for the feedback. I can see the error on my demo site and I also escalated it to the development team to fix the issue soon.
Peter
ModeratorHello,
Only the custom field value will be saved to the custom table. The inner block content is saved to the post content normally.
Here is the screenshot https://imgur.com/t6u09lW
and data saved<!-- wp:meta-box/my-custom-block {"id":"mb-block-3e8ebc0b-2730-4e26-b6b1-d9bee2d81643","data":{"icon_meta":"bookmark","block_content":"\u003cp\u003eblock content here\u003c/p\u003e\n"}} --> <!-- wp:paragraph --> <p>test paragraph</p> <!-- /wp:paragraph --> <!-- wp:heading --> <h2 class="wp-block-heading">Test Heading</h2> <!-- /wp:heading --> <!-- /wp:meta-box/my-custom-block -->March 24, 2024 at 5:52 PM in reply to: Custom User Register Form - Errors Upon Validation Checks #44989Peter
ModeratorHello Nick,
How do you process the form data after submitting it? Do you use your own custom code to do that? Also, I see you are using the custom field type
dc_password_strength_checker, please switch to the typepasswordof Meta Box and see how it goes.March 24, 2024 at 5:41 PM in reply to: calling metabox filters inside render_template php file #44988Peter
ModeratorHello,
No, it shouldn't be done like that. The Meta Box filters
rwmb_are used to modify the field input in the backend. While the template is used to display the field value. They are different places backend and frontend.March 24, 2024 at 5:35 PM in reply to: ✅Display custom fields from group of associated posts (not relationship) #44987Peter
ModeratorHello,
You should use some custom code to display hotel custom fields (star rating, capacity ...) when you have the post ID (hotel name).
Please follow the documentation
https://docs.metabox.io/extensions/meta-box-group/#getting-sub-field-values
https://docs.metabox.io/functions/rwmb-meta/If you use Bricks builder, you can also contact their support to get further assistance.
Peter
ModeratorHello,
You should use the function add_filter() to hook your callback function to that filter hook. Please follow the documentation https://developer.wordpress.org/reference/functions/add_filter/
I remember you have an example in one of previous topics
https://support.metabox.io/topic/rwmb-field-meta-filter-for-cloneable-groups/ -
AuthorPosts