Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Pixluser,
The integration between Meta Box and Oxygen Builder is maintained on the Oxygen side. It has been released a few years ago. Please follow this documentation https://oxygenbuilder.com/documentation/templating/meta-box/
Peter
ModeratorHello Peter,
This issue has been fixed. Please use the plugin Meta Box AIO 2.0.1 or MB Builder 4.9.8 and recheck the issue.
Peter
ModeratorHello John,
Yes, it is a pre-made custom fields group like another form: register. There isn't an option to customize the appearance of this form, you can just use some custom CSS code to change the style of the form.
In general, Meta Box supports some forms in the front end with basic format, style and options like WordPress does. It doesn't work like a page builder to customize every element with a few clicks.
You can consider using a page builder that has the same feature to customize their form deeply.February 18, 2025 at 10:52 PM in reply to: How to make centralized My Account page with Custom and WooCommerce Meta??? #47680Peter
ModeratorHello,
1.
1a, 1b. No, there isn't an option to open the lost password form on a specific page and remove the parameter "rwmb-lost-password" from the URL.
1c. You can use the filter hook
rwmb_profile_lost_password_fieldsto change the text. Take a look at the functionget_lost_password_fields()to get more details.
For the color, you can create a custom CSS code to change it as I mentioned in another topic https://support.metabox.io/topic/how-to-customize-appearance-of-front-end-user-submission-form-using-kadence/#post-476602.
2a. You can refer to this topic to know how to use the filter hook https://support.metabox.io/topic/sort-the-username-and-email-fields/#post-24766
This is a standard feature of WordPress https://developer.wordpress.org/plugins/hooks/filters/2b, 2c, 2d. MB User Profile doesn't support this feature "an email would be sent their way with a link to set up a password for their account".
5. Check point 2a above to use the filter hook
rwmb_profile_register_fieldsto override default field settings. Here is an example:'password' => [ 'name' => __( 'Password', 'mb-user-profile' ), 'id' => 'user_pass', 'type' => 'password', 'required' => true, 'desc' => '<span id="password-strength" class="rwmb-password-strength"></span>', 'attributes' => [ 'pattern' => '^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{10,}$' ] ],NOTE: please understand that, we don't support customization code for your specific needs. If you want to customize your site but don't know how to do that. We offer a customization service for an extra fee. Please contact us here for more details https://metabox.io/contact/
Thank you.
February 18, 2025 at 10:01 PM in reply to: Deactivate MB plugin and user avatar snippet stopped functioning #47679Peter
ModeratorHello Care Digital,
I use that snippet on my site and deactivate Meta Box plugin but don't see the issue. Here is the screenshot https://imgur.com/Q7mfAm3
Can you please share some screenshots of the issue on your site and let me know how to reproduce it?
Peter
ModeratorHello,
If you use the variable, you should remove the curly brackets and single quote from the query arg:
{% set topic_args = { relationship: { id: 'relationship-team-to-topic', from: post.ID }, nopaging: true, post_type: 'topic', orderby: post.topic_datetime | date( 'Y-m-d H:i' ), order: 'ASC' } %}Peter
ModeratorHello,
The relationship ID in the query args is wrong. This is the relationship settings:
function your_prefix_function_name() { MB_Relationships_API::register( [ 'id' => 'event-to-topic',this is the query args
{% set topic_args = { relationship: { id: 'relationship-team-to-topic', from: post.ID }, nopaging: true, post_type: 'topic' } %}it should be
event-to-topic, notrelationship-team-to-topic. Where do you get this IDrelationship-team-to-topic?Here is the updated query args
{% set topic_args = { relationship: { id: 'topic-to-team', to: post.ID }, nopaging: true, post_type: 'topic' } %} {% set event_args = { relationship: { id: 'event-to-topic', to: topic.ID }, nopaging: true, post_type: 'event' } %}Let me know if it helps.
February 14, 2025 at 11:20 PM in reply to: How to make centralized My Account page with Custom and WooCommerce Meta??? #47665Peter
ModeratorHello,
1. The lost password form is available in the login form. Please check this screenshot https://imgur.com/q8Wnp8Z
2. If you use the builder, the placeholder option is available when you edit a
textfield, see this https://imgur.com/aGNe6Ba
if you don't see this option, what is the field type that you are using?3. If you want to send the notification message, you can use the action hook
rwmb_profile_after_process
following the documentation https://docs.metabox.io/extensions/mb-user-profile/#rwmb_profile_after_processIf you use the plugin Meta Box AIO, you can find the confirmation email template in
/wp-content/plugins/meta-box-aio/vendor/meta-box/mb-user-profile/templates/confirmation-email.php
https://imgur.com/aq5oxZJMeta Box supports a basic style and appearance for forms and emails. If you want to have pretty elements, you need to use custom code to style it.
4. Currently, Meta Box plugins don't support other capchas/anti-spam measures. There is a feature request to support hCaptcha in our backlog development and we will work on this for future updates.
5. You can use the custom attribute
patternto set up a validation for thepasswordfield. Please follow the documentation
https://docs.metabox.io/custom-attributes/
https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/patternhowever, if you want to customize the
passwordfield of the MB User Profile, you need to create some custom code to override the settings of the field which is created in the code, not in the builder.6. Currently, there isn't an option to approve or decline a user register submission. I will inform the development team to consider supporting this feature in future updates.
7. Yes, it can work like that. You can create a field with the same ID, for example
billing_companyin a field group and add the field group ID to the user profile form so the user can update this field value in the frontend.Peter
ModeratorHello,
Can you please also share the settings of 2 relationships?
- Team to Topic (team-to-topic)
- Topic to Event (topic-to-event)I check this View code https://pastebin.com/f3WD9DXN
but don't see any issue when outputtingtopicandeventposts.February 14, 2025 at 9:57 PM in reply to: How to select one or multiple users as (co-)authors of a custom post type post #47662Peter
ModeratorHello,
There is no case smarter than another case. It just depends on your requirements when setting up your project
-userfield will be saved to the default WordPress tablewp_postmetaand works like a normal custom field.
-relationshipdata will be saved to a custom tablewp_mb_relationships. You need to use a custom query to get the data.
They are already noted in the documentation that I shared above.To output the data, you can add the code to the template file in the theme folder or use MB Views. For the advanced, you need to have knowledge about coding to create the code.
Peter
ModeratorHello Topher,
Do you use a multisite environment? If yes, please visit the network area and visit the page
settings.php?page=meta-box-updaterto add the license key.
If not, can you open the pagewp-admin/admin.php?page=meta-box-updatermanually?February 14, 2025 at 9:17 PM in reply to: How to customize appearance of front-end user submission form using Kadence #47660Peter
ModeratorHello,
Here is the sample CSS code to style the submit button
button.rwmb-button { width: 100%; }you can add it to the file
style.cssin the theme/child theme folder. See how it works https://imgur.com/rY2KIpMNote: we don't support customization code. If you are not able to complete it, we offer a customization service for an extra fee. Please contact us here https://metabox.io/contact/ for more details.
February 13, 2025 at 11:25 PM in reply to: Issue with saving field value when block has a number field #47652Peter
ModeratorHello Cedric,
Thanks for your feedback.
Can you please share the code that you use to register the custom block and output the block data? I'm not able to reproduce the issue on my site. If you are using the builder, you can follow the documentation to export the field group to a JSON file
https://docs.metabox.io/extensions/meta-box-builder/#export--importFebruary 13, 2025 at 11:15 PM in reply to: ✅File uploads in cloneable groups in not showing in Rest #47651Peter
ModeratorHello Marcus,
That is expected. The subfield value in a group saves only the raw value. It is the media file ID in this case.
So it doesn't return meaningful value like when you use the field as a top field (outside of a group field). I suggest you create a custom route and use the functionRWMB_File_Field::file_info( $image_id )to get the file info and send it via Rest API.Following the documentation https://docs.metabox.io/extensions/meta-box-group/#sub-field-values
Peter
ModeratorHello Julien,
Thank you for your feedback.
There is an issue with the block preview and I've escalated this to the development team to fix it. I will get back to you when I have more information.
-
AuthorPosts