Forum Replies Created
-
AuthorPosts
-
April 4, 2022 at 12:57 PM in reply to: Select Advanced not searchable when editing user profile #35442
Long Nguyen
ModeratorHi Joie,
The field
select_advancedhas the search box to search the option but it works like aselectfield in the form. Do you have a block of code that creates the same field?Please re-save the field group then deactivate all plugins except Meta Box, MB extensions and switch to the standard theme of WordPress (Twenty TwentyTwo) and re-check the issue.
April 4, 2022 at 10:30 AM in reply to: ✅Hello how can i make my custom field appear on user registration #35441Long Nguyen
ModeratorHi,
That is the default fields of the registration form, you can create other fields to add to the registration form, no need to add them twice.
If you want to customize the default fields, please use the filter hook
rwmb_profile_register_fields. Refer to this topic https://support.metabox.io/topic/mb_user_profile_register-autocompletenew-password/#post-27210Long Nguyen
ModeratorHi,
Yes, you can use other custom fields in the frontend submission form. Just add the meta box (field group) ID to the shortcode. See this reply https://support.metabox.io/topic/custom-html-form-and-taxonomies/#post-30721
Long Nguyen
ModeratorHi Greg,
You can use the field
taxonomyand set the default term with the settingstdas well. Refer to this topic https://support.metabox.io/topic/checkbox-checked-by-default-in-field-group/Long Nguyen
ModeratorHi,
If you want to output the image of the term meta, you can try to use this code
$term_id = get_queried_object_id(); $images = rwmb_meta( $field_id, ['object_type' => 'term', 'size' => 'thumbnail'], $term_id ); foreach ( $images as $image ) { ... }Refer to the documentation
https://docs.metabox.io/extensions/mb-term-meta/#getting-field-value
https://docs.metabox.io/fields/image-advanced/#template-usageLong Nguyen
ModeratorHi,
I do not see the custom field ID in your code, just variable so please add the real field ID and pass the post ID to the helper function and re-check it.
$custom_field_1 = rwmb_get_value( 'custom_field_1_id', '', $term_post_id); // get custom post 1 $custom_field_2 = rwmb_get_value( 'custom_field_2_id', '', $term_post_id); // get custom post 2Refer to the documentation https://docs.metabox.io/rwmb-get-value/
Long Nguyen
ModeratorHi,
This feature is available. Please enable the setting
email_confirmationin the registration shortcode. Read more on the documentation https://docs.metabox.io/extensions/mb-user-profile/#registration-formLong Nguyen
ModeratorHi,
I do not understand the question clearly. You can use a third-party plugin to update the user profile without using MB shortcodes. Or use the code to create your own form.
https://wordpress.org/plugins/profile-builder/
https://gist.github.com/chrisdigital/5525127Or still use MB shortcodes but create your own field types. Read more here https://docs.metabox.io/custom-field-type/
Long Nguyen
ModeratorHi,
You are using the field id
user_emailto override the default user email field. So it will only display on the frontend. On the backend, you can see the default email field updated.Please note that, if you use the custom fields to update default fields, the custom fields will not work or display properly on the backend because they have same IDs. You can try to use another field ID to re-check this.
April 2, 2022 at 6:25 PM in reply to: ✅Adding and rendering shortcodes from other plugins (eg Tabulizer not working) #35422Long Nguyen
ModeratorHi Chris,
If you want to render the shortcode in the
wysiwygcontent on the frontend, please follow this documentation https://docs.metabox.io/fields/wysiwyg/#template-usage$value = rwmb_meta( 'wysiwyg_field_id' ); echo do_shortcode( wpautop( $value ) );Long Nguyen
ModeratorHi Keith,
Thank you for your feedback.
We are trying to improve the documentation for the first-used and non-coding users. You are using the MB Builder so no need to export the code and add it to the file functions.php to create the custom fields, it will help you to create the field automatically. Please read more on the documentation https://docs.metabox.io/extensions/meta-box-builder/
Regarding the settings, if you do not want to allow the users to edit that fields, please use the setting
user_roleand assign it toadministrator. It looks like the settingedited_user_roleis not working correctly. I will inform the development team to fix this issue.And there is no option to let the user
viewtheir user profile without editing it.April 2, 2022 at 10:20 AM in reply to: ✅Sortable admin column for relationship shown as admin column #35419Long Nguyen
ModeratorHi Olivier,
Currently, MB Admin Columns does not support sorting by relationship values. And please note that the
sortparameter is used to sort displayed posts by altering the WordPress query. It works only withnon-clonableandnon-multiplefields.Read more on the documentation
https://docs.metabox.io/extensions/mb-admin-columns/#3-advanced-configurationApril 1, 2022 at 3:58 PM in reply to: ✅Ajax form resubmission after failed validation (causes invalid error message) #35401Long Nguyen
ModeratorHi,
Please update the plugin MB Frontend Submission ver 4.0.1 or Meta Box AIO ver 1.15.8 and re-check this issue. Let me know if it works.
April 1, 2022 at 2:07 PM in reply to: ✅Website (wordpress) slows down dramatically when I enable Metabox plugin #35396Long Nguyen
ModeratorHi,
I've replied to your ticket. Can you please check it?
Long Nguyen
ModeratorHi,
Thanks for your feedback.
We've noticed this issue and fixed it in a new commit. It will be included in the next update.
-
AuthorPosts