Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterHi Ryan,
Are you using the Frontend Submission extension? In that extension, we hide all default post fields in the admin area, to make them not duplicated with the default WP UI.
Anh Tran
KeymasterHi Mark,
For
taxonomy_advancedfield, it works similar to any other field.You can use
containsorincondition and both works. Remember to use term ID to specify the value.So, you can write the condition like this:
'visible' => ['field_id', 'contains', 4], // 4 is the term IDOr:
'visible' => ['field_id', 'in', [4, 2]], // 4, 2 are term IDs. In this case, the field will be visible if the tax_advanced has any term with the ID specified.Please see this video for demo:
Anh Tran
KeymasterHi Pogeun,
I guess the problem comes from the front-end CSS, where your theme style might affect WP's style for the media library.
The easiest way to fix it I can think of is using CSS to hide these strings. Please try it.
March 18, 2020 at 2:35 PM in reply to: ✅Trouble getting file url of file attachment in cloneable group #18568Anh Tran
KeymasterHi, you need to check if the file is uploaded in your group, like this:
if ( isset( $file_attachment['attachment'] ) ) { $file_info = get_attached_file( $file_attachment[‘attachment’] ); echo ... }Anh Tran
KeymasterHi Daniel, we haven't supported saving the whole posts object in custom table yet. That's on our plan and we'll try to finish it this year. We'll let you know when it's done.
March 11, 2020 at 10:08 AM in reply to: ✅Bug: Frontend form submit button stuck as disabled when validation fails #18526Anh Tran
KeymasterHi Ryan,
Thanks a lot for your feedback. I've just fixed it and released version 1.6.3.
March 11, 2020 at 9:50 AM in reply to: ✅MetaBox AIO - rwmb_profile_update_user_data - $data empty #18525Anh 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.
-
AuthorPosts