Forum Replies Created
-
AuthorPosts
-
March 11, 2020 at 9:50 AM in reply to: ✅MetaBox AIO - rwmb_profile_update_user_data - $data empty #18525
Anh Tran
KeymasterHi Tobias,
Sorry for the delay. The filter works for only default user fields, like user email and password. To change the value of custom fields before saving into the DB, please use the rwmb_field_id_value filter.
March 11, 2020 at 9:30 AM in reply to: is there a limit on the number of MB dynamic tags available in Elementor? #18524Anh Tran
KeymasterHi James,
There's no limits on that. That's a weird thing and we never do that. Probably it's something else.
March 11, 2020 at 9:26 AM in reply to: ✅image_upload field select files not working on iphone #18523Anh Tran
KeymasterSorry, I missed another commit. Please apply this change to the "image_upload.js" file as well.
Anh Tran
KeymasterHi Jessica,
Have you checked the custom table that I mentioned above? Can you please share a screenshot of the field setup?
Anh Tran
KeymasterHi Austin,
Thanks for your feedback. I guess, it's a sign that there's a problem with the logic syntax. Can you please check it first? And if possible, please send me the code for meta boxes, so I can double check.
Thanks
Anh Tran
KeymasterHi Nick,
Yes, it's possible. Please use the rwmb_field_meta filter, which helps you to set/change the value before outputting on the front end.
Anh Tran
KeymasterHi,
I've fixed this bug. Can you please try it?
March 9, 2020 at 11:09 AM in reply to: ✅Fatal Error with Elementor : undefined function get_current_screen() #18506Anh Tran
KeymasterHi Johann,
The bug is fixed here. Can you please check if that works for you?
PS: I couldn't replicate the bug, so my fix probably is just my logic.
March 6, 2020 at 4:16 PM in reply to: ✅Metabox Settings Page/ BB Themer Color Picker/ Cache not clearing #18492Anh Tran
KeymasterHi Luis, glad that you found the solution. Looks like it's BB cache issue rather than the plugin. So, I'll mark this issue resolved.
Anh Tran
KeymasterNo, you don't need to. The update only sets the default password_strength to weak, so, it's fine to keep it.
Anh Tran
KeymasterHi Cedric,
To be able to set a custom attribute for title, you need to create a text field and put it in the meta box (which has ID in the shortcode), like this:
add_filter( 'rwmb_meta_boxes', function( $meta_boxes ) { $meta_boxes[] = [ 'title' => 'Your title', 'id' => 'your-id', 'fields' => [ [ 'title' => 'Post title', 'id' => 'post_title', 'disabled' => true, ], // Other fields here ], ]; } );And in your shortcode, don't include the
post_fieldsparameter:[mb_frontend_form id="your-id"]March 5, 2020 at 4:04 PM in reply to: ✅User profile email text field not showing address using user_email as ID #18471Anh Tran
KeymasterHi Nick, you probably need to use a filter to change the value displayed:
add_filter( 'rwmb_user_email_field_meta', function( $meta, $field, $saved ) { $user = wp_get_current_user(); return $user->user_email; }, 10, 3 );Anh Tran
KeymasterHi Nick,
Zoom is saved in the post meta. So, the plugin will take the value from the post meta, instead of pulling from the parameter.
Anh Tran
KeymasterHi Jackky, this issue relates to the sanitization mechanism. Please see this blog post for details and fix.
March 5, 2020 at 3:57 PM in reply to: ✅Fatal Error with Elementor : undefined function get_current_screen() #18468Anh Tran
KeymasterHi Johann,
Thanks for your feedback. We'll check and fix the bug!
-
AuthorPosts