Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 841 through 855 (of 3,838 total)
  • Author
    Posts
  • PeterPeter
    Moderator

    Hello,

    Yes, for the archive page (all Event posts), you can create a separate query and use the loop to show Event posts. Please follow the documentation to include other views in a view template
    https://docs.metabox.io/extensions/mb-views/#include-other-views

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

    Hello,

    Please share your site admin account by submitting this contact form https://metabox.io/contact/
    I will take a look.

    in reply to: Can't clone cloneable group and can't view wyswig 'Text' #47705
    PeterPeter
    Moderator

    Hello,

    Can you please activate the single plugin Meta Box along with Meta Box AIO and rechek the issue?

    PeterPeter
    Moderator

    Hello,

    Do you hook your callback function to the init hook with a priority later than 20 so the function rwmb_set_meta() can work? It is noted in the documentation
    https://docs.metabox.io/functions/rwmb-set-meta/

    This code works as well on my site to set the date field value

    add_action( 'init', function() {
        $start_date = '20-04-2025';
        $recurring_events[] = array(
            'event_date' => strtotime($start_date),
        );
    
        rwmb_set_meta( 198, 'recurring_event_group', $recurring_events );
    }, 99 );
    in reply to: Add More Button - display:none #47703
    PeterPeter
    Moderator

    Hello John,

    There is a small issue with the cloneable button. Please activate the plugin Meta Box to fix the issue. The development team is working on it and the fix for this issue will be included in the next update of Meta Box plugins.

    PeterPeter
    Moderator

    Hello,

    Please notice the side connection in the relationship: FROM or TO

    'id'          => 'event-to-topic'
    'id'          => 'topic-to-team',

    then you can correct the directional from or to when using the query to get the relation post.

    Following the previous topic, you can use two query args

    {% set topic_args = { relationship: { id: 'event-to-topic', from: post.ID }, nopaging: true, post_type: 'topic' } %}
    
    {% set team_args = { relationship: { id: 'topic-to-team', from: topic.ID }, nopaging: true, post_type: 'team' } %}

    I hope that makes sense.

    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' } 
    %}
    
Viewing 15 posts - 841 through 855 (of 3,838 total)