Forum Replies Created
-
AuthorPosts
-
July 14, 2023 at 5:59 PM in reply to: ✅Issue with disappearing data in metabox.io custom fields #42566
Peter
ModeratorHello,
Please check the option "Save field value" if it is disabled. If yes, please enable it and recheck this issue. See this screenshot https://monosnap.com/file/boUvSTyR4Kmm5Ls0wmDiELKehY7Lkb
Peter
ModeratorHello,
Can you please export the CPT to a JSON file and share it here? Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
July 14, 2023 at 5:51 PM in reply to: How to display the Label of a Radio Field in a repeatable group field ? #42564Peter
ModeratorHello Joe,
It might be a complicated case to use the helper function rwmb_get_field_settings() to get the group settings and some loop to get the field label.
Refer to this topic https://support.metabox.io/topic/show-label-of-select-chekbox-list/Peter
ModeratorHello,
This need to have some custom code to move data from a top field to a group field. You can refer to this topic to have a basic knowledge about that https://support.metabox.io/topic/migrating-from-regular-fields-to-a-grouped-field/#post-34319
If you are not able to complete the task, you can contact us here https://metabox.io/contact/
our development team will help you with an extra fee.Peter
ModeratorHello,
There are some issues with the WYSIWYG field and our development team is still working on it. This issue is fixed in this commit https://github.com/wpmetabox/meta-box/commit/cd7b3d26f9eea0568e5a4b56344f8e5a8a61b469
if you are familiar with coding, you can apply the changes on your site while waiting for the next update.Peter
ModeratorHello,
It is working now. Thanks for your feedback.
Peter
ModeratorHello,
There was an issue with the data center and now it works properly.
Thank you, guys, for your feedback.
Peter
ModeratorHello,
You can use those filters to wrap the subfield in a custom HTML, for example:
add_filter( 'rwmb_subfieldID_wrapper_html', function( $html, $field, $meta ) { $html = '<div class="my-class">'. $html . '</div>'; return $html; }, 10, 3);July 12, 2023 at 5:17 PM in reply to: Same value for a specific custom field of all posts of a CPT #42541Peter
ModeratorHello,
Use the settings page that lets you save/update the value in one place. Then you still need to use the custom code to update the value for fields in other posts. There isn't a solution with a few clicks to do that.
I hope that makes sense.
Peter
ModeratorHello,
If you want to wrap a field in a custom HTML code, please use the field settings
beforeandafter. Read more in the documentation https://docs.metabox.io/field-settings/ (Advanced tab).Peter
ModeratorHello,
Our development team is aware of this issue and is working on it. Please wait for the next update to fix this issue. For now, you can switch to the tab Text of the WYSIWYG field to add the field content.
Peter
ModeratorHello,
I do not see that issue on your staging site https://temp1.goninski.ch/wp-admin/admin.php?page=goa#tab-options
with two fields Modus and Test Modus.On your local site, you can try to add the field ID prefix to the conditional logic or remove the field ID prefix and recheck this issue. Screenshot https://imgur.com/w3lO9Co
If you create a screen record, please make it on the staging site so I can check the issue. Thanks.
Peter
ModeratorHello,
What I'm trying to do here is to use the WordPress function to register the post type with code, this is what Meta Box CPT does in the background.
So I think it is not an issue of Meta Box CPT and the custom role. You can try to create a topic in the WordPress support forum and ask for help with this issue.
https://wordpress.org/support/forum/how-to-and-troubleshooting/I hope that makes sense.
Peter
ModeratorHello,
I don't think it is a bug of Meta Box. If you create a CPT with the WordPress function
register_post_type()and add the code to enable capabilities as MB CPT plugin does'capability_type' => ['business', 'business'], 'map_meta_cap' => true,Then you still cannot assign the CPT to a user who has a custom role.
Refer to the documentation
https://docs.metabox.io/extensions/mb-custom-post-type/#notes
https://developer.wordpress.org/reference/functions/register_post_type/#capabilitiesJuly 10, 2023 at 6:04 PM in reply to: ℹ️Is it possible to update post to add a repeater group from a different form? #42531Peter
ModeratorHello,
I think it is possible but you need to use some custom code to do that. I suggest you can try to use the action hook
rwmb_{$field_id}_after_save_fieldthen update the field value of another CPT.
Refer to the documentation https://docs.metabox.io/actions/rwmb-after-save-field/ -
AuthorPosts