Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I saw that issue yesterday on my local site but now, somehow, it works properly. Maybe resetting the PHP or MySQL service and clear the cache fixes the issue.
If it doesn't help, please share your site admin account via this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello Nick,
They are different filter hooks
rwmb_field_metaandrender_blockso the priority doesn't mean in this case. The priority only works when you add two callback functions to a filter hook. For example:add_filter( 'rwmb_field_meta', [ $this, 'metaboxfiltertest' ], 15, 3);add_filter( 'rwmb_field_meta', [ $this, 'cusomfiltertest' ], 10, 3);Please follow the documentation https://developer.wordpress.org/reference/functions/add_filter/
Peter
ModeratorHello,
MB Beaver Themer Integrator doesn't support an option to append the field value to the URL. You will need to create some custom code on your own to achieve the goal.
If you cannot complete the task, we offer a customization service with an extra fee. Please contact us here with your details https://metabox.io/contact/March 27, 2024 at 8:48 PM in reply to: Validation Bug with Cloned Items - Metabox Group + Frontend Form #45033Peter
ModeratorHello,
I can reproduce the issue on my demo site. I've escalated this issue to the development team to fix it in future updates.
Thank you.
Peter
ModeratorHello,
You can use the filter hook
rwmb_post_choice_labelto change the post title in the dropdown. And notice that it will apply to allpostfields on your site. Following the documentation
https://docs.metabox.io/fields/post/#filtersPeter
ModeratorHello,
I see the CSS selector works as well on my demo site, screenshots https://imgur.com/a/jnISBGb
.my-group-class .rwmb-button.button-primary.add-clone { color: red; }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? #45016Peter
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. -
AuthorPosts