Forum Replies Created
-
AuthorPosts
-
March 2, 2025 at 10:22 PM in reply to: Custom field: Post - display more than just the title in the advanced select box #47759
Peter
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.phpPeter
ModeratorHello Soren,
Please update the plugin Meta Box AIO to the latest version 2.0.1 or activate the plugin Meta Box along with Meta Box AIO then check the issue again.
Let me know how it goes.
February 24, 2025 at 10:45 PM in reply to: Metatbox AIO with or without installing individual plugins #47729Peter
ModeratorHello Lucian,
Meta Box AIO includes all extension plugins so you will need to use this plugin to get all features of Meta Box plugins.
By default, all extensions are enabled. You can go to Meta Box > Extensions to disable some of them.Refer to the documentation https://docs.metabox.io/extensions/meta-box-aio/
February 24, 2025 at 9:49 PM in reply to: jQuery not working in the editor anymore after update #47728Peter
ModeratorHello,
Currently, we don't support downloading older versions of MB premium plugins. The development team is working on this issue and we will release an update to cover this issue as soon as possible.
Thanks.
Peter
ModeratorHello,
You are using this code to output the field WYSIWYG value:
if($mc_text) echo '<p>'.nl2br($mc_text).'</p>';removing the function
nl2br()will solve the issue, screenshot https://imgur.com/UcfqfN4if($mc_text) echo $mc_text;February 21, 2025 at 10:54 PM in reply to: jQuery not working in the editor anymore after update #47715Peter
ModeratorHello Gerda,
This issue has been reported here https://support.metabox.io/topic/mb_blocks_preview-not-working/
and currently, it is not fixed yet.
I will get back to you when it is included in an update of MB Blocks plugin.Thank you.
February 21, 2025 at 10:52 PM in reply to: Taxonomy Advanced-can't create archive template for terms #47714Peter
ModeratorHello Tanja,
Please follow the documentation below to understand the difference between
taxonomyandtaxonomy_advancedfields.
https://docs.metabox.io/fields/taxonomy-advanced/
https://docs.metabox.io/fields/taxonomy/-
taxonomy: set post terms and work like WordPress taxonomy box.
-taxonomy_advanced: set post meta and work like other custom fields.if you are using the
taxonomy_advancedfield, you can query posts by post meta. Please contact Bricks support to get further assistance when you use their builder. -
AuthorPosts