Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
They are not a handle script name in the Meta Box source code so you cannot dequeue the non-existed handle name.
If you don't want to use the inline style of Meta Box, you can create some custom CSS code to override its style.March 4, 2025 at 10:13 PM in reply to: Meta Box lost ability to update Custom Table Group fields via API after 1.30.5 #47776Peter
ModeratorHello Cameron,
Can you please export the field group to a JSON file and share it here? I will check the field settings and reproduce the issue on my end.
Peter
ModeratorThanks for letting us know. Feel free to create a new topic if you have any questions.
Peter
ModeratorHello,
Yes, you can deactivate Meta Box plugin and keep using only Meta Box AIO plugin to get all features of Meta Box plugins.
Peter
ModeratorHello Marcus,
Thank you for reaching out and for your feedback.
There is an issue with the text limiter extension, it only works with the first field on a page. I've escalated this issue to the development team to fix it soon.
March 3, 2025 at 8:25 PM in reply to: How to Use Meta Box Relationship Data in Slim SEO Schema #47762Peter
ModeratorHello Olivier,
I searched in the documentation but didn't see an option to show the relationship value in the schema markup. If you have any questions related to Slim SEO, please contact us here https://wpslimseo.com/contact/
If you want to output the relationship value with code, please follow the documentation https://docs.metabox.io/extensions/mb-relationships/
March 2, 2025 at 10:22 PM in reply to: Custom field: Post - display more than just the title in the advanced select box #47759Peter
ModeratorHello Markus,
You can follow the documentation below to use the filter hook
rwmb_my_field_choice_labeland add some extra info to the post title in the list.Peter
ModeratorHello,
This issue has been fixed in the new version of Meta Box AIO 2.0.2. Can you please update it and check the issue again?
February 27, 2025 at 10:43 PM in reply to: Issue with Registering a Gutenberg Block – Block Not Displaying #47755Peter
ModeratorHello Sven,
Meta Box doesn't support the filter hook
meta_box_blocks. Can you please let me know where you get it? Is it noted in the documentation?We only support one filter hook
rwmb_meta_boxesto register all types: custom fields, blocks, settings page ...If you want to register the custom block with PHP code, please follow the documentation
https://docs.metabox.io/extensions/mb-blocks/#block-registration-without-blockjsonPeter
ModeratorHello Nick,
It could be related to the issue with cloneable group field and it has been fixed in the new version of Meta Box and Meta Box AIO. Can you please update those plugins and recheck the issue?
Also, if you set the attribute
object_id=1to the frontend shortcode, the frontend submission form only allows editing the object ID 1. You can read more about shortcode attributes in the documentation
https://docs.metabox.io/extensions/mb-frontend-submission/#adding-the-submission-formPeter
ModeratorHello Nick,
Can you please create/submit a new model entry and recheck the issue? If it still doesn't work, please upload your local site to an online hosting and share the admin site account by submitting this contact form https://metabox.io/contact/
I will take a look.February 26, 2025 at 9:00 PM in reply to: Login Form Forgotten Password link does not have a password strength #47745Peter
ModeratorHello,
The reset password form has different settings, it doesn't use the same settings as in the register form. I will inform the development team to consider supporting the password strength in the reset password form.
If you are familiar with coding, you can follow my suggestion above to use the filter hook
rwmb_profile_reset_password_fieldsand set some custom attributes to the field.Peter
ModeratorHello,
Thank you for your feedback. I've shared this topic with the content team and we will consider creating an article regarding this case.
Have a good day.
Peter
ModeratorHello Mark,
I'm afraid that there isn't an option to set a custom field as an alt text for an uploaded image via the frontend form or in the admin area.
If you are familiar with coding, I think you can use the action hookrwmb_{$field_id}_after_save_fieldand update the standard custom field value_wp_attachment_image_altof the image by the custom field from Meta Box. Refer to the documentation
https://docs.metabox.io/actions/rwmb-after-save-field/February 25, 2025 at 11:09 PM in reply to: Login Form Forgotten Password link does not have a password strength #47738Peter
ModeratorHello,
Thank you for your feedback.
You are correct. The
passwordfield in the reset password form doesn't have the password strength option.
https://docs.metabox.io/fields/password/If you can use the filter hook, you can check the filter
rwmb_profile_reset_password_fieldsto adjust the password field of the form and add some custom attributes to the field settings likeminlength,pattern...
https://docs.metabox.io/custom-attributes/The code to create the form is located in the file
/wp-content/plugins/meta-box-aio/vendor/meta-box/mb-user-profile/src/DefaultFields.php -
AuthorPosts