Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Duplo,
This issue has been fixed. Please update the new version of Meta Box AIO 1.14.3 or MB Yoast SEO Integration 1.3.8 to re-check it.
September 1, 2021 at 7:40 PM in reply to: ✅Copying Group field entries from another custom post type? #30538Long Nguyen
ModeratorHi,
Meta Box doesn't support populating field values with JavaScript like that. With a
groupfield cloneable, it is very complicated to accomplish. You can try to set the field value after updating the post (reload the page) by using the helper function rwmb_set_meta().I hope that helps.
September 1, 2021 at 5:43 PM in reply to: Pay to Post... User assigned as editor/author... subscription period #30537Long Nguyen
ModeratorHi,
Thank you for your feedback.
I'm going to inform the developer team to consider adding a feature like "pay to post" to the to-do list for the future development of the plugin.
September 1, 2021 at 5:22 PM in reply to: Don't save "select" value in database if select is not picked #30536Long Nguyen
ModeratorHi,
So you can show the
textfield only the users select an option and markrequiredfor the text field. Is that easier?Here is the sample code
'fields' => [ [ 'name' => 'Select', 'id' => $prefix . 'select', 'type' => 'select', 'options' => [ 'java' => 'Java', 'javascript' => 'JavaScript', 'php' => 'PHP', 'csharp' => 'C#', ], 'placeholder' => 'Select an Item', ], [ 'name' => 'Text', 'id' => $prefix . 'text', 'type' => 'text', 'visible' => [ 'select', '!=', '' ], 'required' => true ] ],Long Nguyen
ModeratorHi,
The CSS code works on my end so it might be a caching issue. Please try to clear the cache and re-check it. Or you can share your page URL, I will help you to check.
September 1, 2021 at 10:51 AM in reply to: ✅Error : "Invalid File" when delete image - Custom Field - User - Type : Image #30529Long Nguyen
ModeratorHi,
Please use the field
imageorfileas a top field, not a subfield to delete images/files when clicking "X" button. This issue will be fixed in the next update.Regarding the feature limit images on select, I will inform the development team to explore the possibility.
Long Nguyen
ModeratorHi,
Please try again with this one
@media (min-width: 1024px) { body #login-form .rwmb-label { width: 25%; } }August 31, 2021 at 10:23 PM in reply to: ✅Error : "Invalid File" when delete image - Custom Field - User - Type : Image #30518Long Nguyen
ModeratorHi,
Thank you for your feedback.
You can still delete the images but it shows the wrong message, screen record https://share.getcloudapp.com/eDuRRXeR
This issue might happen when the
imagefield is a subfield inside a group. I will inform the development team to fix this in the next update.August 31, 2021 at 12:35 PM in reply to: How to set-up conditions in backend using the Builder? #30512Long Nguyen
ModeratorHi,
Please add the value of the field to the conditional logic. Screen record https://share.getcloudapp.com/qGuJJDRk
display_on_home_news_sec=yesLong Nguyen
ModeratorHi Jeremy,
The extension MB Comment Meta only supports showing the custom field when editing the comment. WordPress does not support showing the comment box when editing the post like that, it might be added by a third-party plugin or a block of code.
Long Nguyen
ModeratorHi,
If you do not use the second argument, you need to leave it blank by using single quotes like this.
<?php rwmb_the_value ('cf-misto-konani', '', $post_id = '187'); ?>Long Nguyen
ModeratorHi,
If you do not pass the third argument to the helper function
rwmb_meta(), it will take the current post ID (current query object ID) which means the ID of the post which has the repeater. It's not the IDs of the post in the list (repeater). Please read more here https://docs.metabox.io/rwmb-meta/#argumentsI think you can create a custom query to get posts by arguments and custom field values. Then put only the View shortcode to the Oxygen Builder. Follow on this documentation
https://docs.metabox.io/extensions/mb-views/#custom-queryLong Nguyen
ModeratorHi,
There is no option/setting to limit the resolution of the uploaded images. You can limit the uploaded file size by using the setting
max_file_sizeof the fieldimage_uploadGet more details on the documentation https://docs.metabox.io/fields/image-upload/#settings
August 30, 2021 at 6:12 PM in reply to: Don't save "select" value in database if select is not picked #30503Long Nguyen
ModeratorHi Maria,
I think you can use the extension MB Conditional Logic to show the
selectfield when thetextfield is not empty. Then mark them as Required.Get more details on the documentation https://docs.metabox.io/extensions/meta-box-conditional-logic/
August 30, 2021 at 2:55 PM in reply to: Fields - Posts are publishing even if 'Required' is true #30496Long Nguyen
ModeratorHi,
If the field is hidden by the conditional logic, the validation will be ignored. Refer to this commit https://github.com/wpmetabox/meta-box/pull/1361
-
AuthorPosts