Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 796 through 810 (of 3,787 total)
  • Author
    Posts
  • in reply to: WYSIWYG adds line break to list element #47701
    PeterPeter
    Moderator

    Hello,

    I still cannot reproduce the issue, screenshot https://imgur.com/rsyJZid

    Can you please share some screenshots or a screen record of the issue on your site?

    in reply to: Range slider problem #47699
    PeterPeter
    Moderator

    Hello Peter,

    Thanks for the details. I can see the issue with the range subfield in a group field. It works properly when using it as a top field.
    I'm going to escalate this issue to the development team to fix this soon.

    in reply to: WYSIWYG adds line break to list element #47688
    PeterPeter
    Moderator

    Hello,

    You can try to use a custom sanitize callback to stripe the break tag <br>, following the documentation https://docs.metabox.io/sanitization/

    Meanwhile, I'm not able to reproduce the issue on my end. The break tag is not added to the unordered list elements. Here is the screen record
    https://imgur.com/xz3xeEX

    in reply to: Oxygen and Metabox - Adding Fields #47686
    PeterPeter
    Moderator

    Hello 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/

    in reply to: Range slider problem #47685
    PeterPeter
    Moderator

    Hello 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.

    in reply to: how to customize #47681
    PeterPeter
    Moderator

    Hello 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.

    PeterPeter
    Moderator

    Hello,

    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_fields to change the text. Take a look at the function get_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-47660

    2.

    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_fields to 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.

    PeterPeter
    Moderator

    Hello 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?

    in reply to: Team > Topic > Event in a View #47668
    PeterPeter
    Moderator

    Hello,

    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' } 
    %}
    
    in reply to: Team > Topic > Event in a View #47666
    PeterPeter
    Moderator

    Hello,

    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, not relationship-team-to-topic. Where do you get this ID relationship-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.

    PeterPeter
    Moderator

    Hello,

    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 text field, 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_process

    If 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/aq5oxZJ

    Meta 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 pattern to set up a validation for the password field. Please follow the documentation
    https://docs.metabox.io/custom-attributes/
    https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern

    however, if you want to customize the password field 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_company in 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.

    in reply to: Team > Topic > Event in a View #47663
    PeterPeter
    Moderator

    Hello,

    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 outputting topic and event posts.

    PeterPeter
    Moderator

    Hello,

    There is no case smarter than another case. It just depends on your requirements when setting up your project
    - user field will be saved to the default WordPress table wp_postmeta and works like a normal custom field.
    - relationship data will be saved to a custom table wp_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.

    in reply to: Where do I enter my icense key? #47661
    PeterPeter
    Moderator

    Hello Topher,

    Do you use a multisite environment? If yes, please visit the network area and visit the page settings.php?page=meta-box-updater to add the license key.
    If not, can you open the page wp-admin/admin.php?page=meta-box-updater manually?

    PeterPeter
    Moderator

    Hello,

    Here is the sample CSS code to style the submit button

    button.rwmb-button {
        width: 100%;
    }

    you can add it to the file style.css in the theme/child theme folder. See how it works https://imgur.com/rY2KIpM

    Note: 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.

Viewing 15 posts - 796 through 810 (of 3,787 total)