Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterHi Akram,
Your field looks fine to me. Just want to make sure that field is not inside any group, is it?
If it's not, please send me a temporary admin account to check. There might be something else.
December 16, 2019 at 4:58 PM in reply to: ✅How to render block in edit mode by default or trigger edit on load? #17538Anh Tran
KeymasterI got it. I'll add a param
modefor the block that you can specify the initial mode:editorpreview(default).December 16, 2019 at 4:37 PM in reply to: ✅Despite purchasing a lifetime bundle, it warns "Your license key is invalid" #17536Anh Tran
KeymasterI found the email and order. I've just changed the incorrect email to yours. Now you'll see downloads in your My Account page.
December 16, 2019 at 4:20 PM in reply to: ✅Registration: username as email, duplicated fields, avatar, visibility issue #17535Anh Tran
Keymasterwould be nice to be able to put i.e. first name and last name above the email and password fields.
I got it. I'm trying to make that easier for you to reorder the fields. Please wait.
One more thing, can I hide the password field and have WP generate one and send it in email with the welcome message?
Unfortunately, it's not possible. I guess you're tailoring the registration progress, aren't you?
Anh Tran
KeymasterHi Nick,
To redirect the form after submission, please put this code into your theme's
functions.phpfile.add_filter( 'rwmb_frontend_redirect', function( $url, $config ) { if ( 'your-meta-box-id' === $config['id'] ) { $url = 'http://domain.com/your-url/'; } return $url; }, 10, 2 );Anh Tran
KeymasterHi Daniel,
I've just checked again with a fresh install. And it seems to work fine to me. Here is my video:
https://www.loom.com/share/be5830bcdfdf4b8c9e985e343da00e9e
Do you see any errors in the browser console? Is there any other plugin activated?
December 14, 2019 at 11:09 AM in reply to: ✅Registration: username as email, duplicated fields, avatar, visibility issue #17525Anh Tran
KeymasterHi Mauro,
I think I misunderstood your point. The improvement I made is for removing duplicated fields from the back end.
I think in this case, you shouldn't add those email/password fields in the register form as it's already in the top of the form.
December 14, 2019 at 11:01 AM in reply to: ✅How to render block in edit mode by default or trigger edit on load? #17524Anh Tran
KeymasterI'm afraid there's no such option. Just wondering why would you want that?
Anh Tran
KeymasterHi Nick,
Yes, it's possible. Please see this tutorial for details:
https://metabox.io/p1-add-guest-author-in-wordpress/
It requires some coding, though. We're improving the plugin to make it easier for users.
Anh Tran
KeymasterHi Rick,
Label is always besides input. It's the default behavior and there's no options to change it. Perhaps I misunderstood. Can you give an example in MB Template vs MB Builder?
Anh Tran
KeymasterHi Rick, we have it on the plan but haven't done it yet. I've just pushed it to our team and will work on that in the next month.
Anh Tran
KeymasterHi zhenglc,
Comment meta is now supported in version 1.4.0. Please update. If you're using AIO, please wait, we'll update it in a few days.
December 11, 2019 at 9:20 PM in reply to: ✅Despite purchasing a lifetime bundle, it warns "Your license key is invalid" #17491Anh Tran
KeymasterHi,
What was your email when you bought it?
I meant the email address that you used to buy the plugins, not the email content. Looks like you have updated your email in your account, so the system doesn't recognize your license. Please just send me your old email and I'll take a look.
December 11, 2019 at 8:34 PM in reply to: ✅Registration: username as email, duplicated fields, avatar, visibility issue #17489Anh Tran
KeymasterHey guys,
I've just released a new version of MB User Profile with support for all of your requests:
- Added a new parameter
email_as_usernamefor the register shortcode, now you just need to addemail_as_username='true'to your shortcode to let users use their email for usernames. - No duplicated fields are displayed in the WP admin area anymore. Feel free to add WP fields such as
first_name,last_name, etc. - For custom avatar, please just use the
imagefield and set'max_file_uploads' => 1. Users won't be able to add more files. - Messages are displayed properly now.
If you have any feedback, please let me know.
Anh Tran
KeymasterHi,
This topic is about blocks, so I thought you're talking about it.
What you want is moving the meta boxes to the sidebar. That can be done with the same parameter
'context' => 'side'for meta boxes. See this docs.Previously, Gutenberg moves all the meta boxes to the "after content" position, which is what you're seeing. It probably changed its behavior to accept
sidecontext. I've updated the Builder to reflect the change, so you can see the option within the Builder. - Added a new parameter
-
AuthorPosts