Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 2,116 through 2,130 (of 3,702 total)
  • Author
    Posts
  • in reply to: How to create columns? #9898
    Anh TranAnh Tran
    Keymaster

    No problem. Let me know if you need anything else ๐Ÿ™‚

    in reply to: required fields #9882
    Anh TranAnh Tran
    Keymaster

    Can you please try updating again? I've just checked and there's no problem.

    If the update fails, can you send me the error message? The #2 error will be still there if you couldn't update.

    in reply to: map field #9881
    Anh TranAnh Tran
    Keymaster

    Hi there,

    Thanks for the bug report! I've fixed it in this commit. I'll release new version soon.

    in reply to: How to create columns? #9880
    Anh TranAnh Tran
    Keymaster

    Hi,

    I'm making some improvement to the text_list field, regarding your suggestion :). What do you think about this layout?

    https://imgur.elightup.com/d4qxPLa.png

    Or do you prefer everything in 1 column, like this?

    https://imgur.elightup.com/WNFY0wp.png

    PS: To upload screenshot, please upload it to a service https://imgur.com and paste the link here.

    in reply to: Fieldset Select #9879
    Anh TranAnh Tran
    Keymaster

    Unfortunately, no. It's only available for text field.

    in reply to: settings pages in front end #9877
    Anh TranAnh Tran
    Keymaster

    Hello,

    Thanks for the link. It makes sense :).

    I'll put this in the development plan :).

    Anh TranAnh Tran
    Keymaster

    Thanks, I'll check that.

    in reply to: settings pages in front end #9847
    Anh TranAnh Tran
    Keymaster

    But why do you want this? Because for settings, you should be an admin to make changes. And if you're an admin, it's much easier to go to Dashboard > Your Settings Page to make changes. I'm quite confused about the use case of this.

    in reply to: Fieldset Select #9846
    Anh TranAnh Tran
    Keymaster

    I'm afraid no. If you're using text field, you can select values or enter your own value using datalist. See this docs for more info:

    https://docs.metabox.io/fields/text/

    It's not supported in Fieldset Text, though.

    in reply to: Bulk options adding #9845
    Anh TranAnh Tran
    Keymaster

    I'm afraid you have to do it manually. Because the plugin provides UI to users to interact, you should interact :). To shorten the time, you can just enter the Value, the Key will be automatically filled in.

    in reply to: control posts comments on or off #9844
    Anh TranAnh Tran
    Keymaster

    Hi,

    Please use this snippet:

    add_filter( 'rwmb_frontend_insert_post_data', function( $data, $config ) {
        if ( 'meta-box-id' == $config['id'] ) {
            $data['comment_status'] = 'closed';
        }
        return $data;
    }, 10, 2 );
    in reply to: How to create columns? #9842
    Anh TranAnh Tran
    Keymaster

    Hi,

    As you're using text_list, they'll display in a row like this:

    https://imgur.elightup.com/xipaodj.png

    All you need to do is using simple text fields for them. Please create 3 text fields for year, berths and fixed beds. And you'll get them in a column.

    in reply to: required fields #9840
    Anh TranAnh Tran
    Keymaster

    Hi, I've just updated the plugin to remove the debug function in the #2 error :(. Sorry about that.

    Regarding the #1: you need to change the code at this line to your code that register users. If you submit multiple times, it returns the same user info and thus, WordPress will throw an error of existing username/email.

    in reply to: Home Page Include #9803
    Anh TranAnh Tran
    Keymaster

    I think the way you access to global $post is incorrect. That global object is not available when registering meta box. To get the post ID, please use this code instead:

    https://github.com/wpmetabox/library/blob/master/conditional-display/better-include.php#L66

    in reply to: required fields #9801
    Anh TranAnh Tran
    Keymaster

    Hello,

    I've just updated the plugin (v1.0.1) that add support for ignoring the register process and allow you to register the user by your own. Please update and see the demo code here:

    https://github.com/wpmetabox/library/blob/master/extensions/mb-user-profile/register-user-manually.php

Viewing 15 posts - 2,116 through 2,130 (of 3,702 total)