Forum Replies Created
-
AuthorPosts
-
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/Peter
ModeratorHello,
You need to use a migration plugin like AIO WP Migration https://wordpress.org/plugins/all-in-one-wp-migration/
or WP All Export/Import to migrate data on your site to another site. Meta Box does not support migrating data on your site.Peter
ModeratorHello,
Which is the taxonomy field type? And do you create a custom taxonomy for the attachment post type? Please share some screenshots of the issue on your site.
Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a closer look.Peter
ModeratorHello,
On your staging site, I do not see a field group that has the custom field "teaser" like that. Can you please create those custom fields or import field group to the staging site and let me check the issue?
Peter
ModeratorHello,
Please use the tooltip position "bottom, left, right" to fix this issue. Let me know how it goes.
July 8, 2023 at 10:22 AM in reply to: MB fields missing or misnamed (shows old/changed name) in Elementor Dynamic Tags #42522Peter
ModeratorHello,
Please share the JSON file and image via this contact form https://metabox.io/contact/
July 7, 2023 at 9:50 PM in reply to: MB fields missing or misnamed (shows old/changed name) in Elementor Dynamic Tags #42518Peter
ModeratorHello,
I don't see a limitation to display custom fields in Elementor dynamic tag. Please export your field group to a JSON file and share it here, I will import it to my demo site and check this issue. Also, please share some screenshots of the issue on your end.
Read more in the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
July 7, 2023 at 9:06 PM in reply to: Small Bug Report: additional HTML not hidden if field is hidden #42517Peter
ModeratorHello,
The option "before" or "after" supports adding HTML tags outside of HTML field, like a wrapper. The conditional logic show/hide the HTML field only so the additional HTML tags are not affected. You can use the Inspect tool to see the HTML structure.
Peter
ModeratorHello,
I'm not sure what's wrong with the capabilities of the custom role. I also see that issue on my end. I fix it by coping a default role:
- Assign the capabilities to the Contributor role (default of WordPress)
- Create a custom role and make it a copy of Contributor role.Then I can assign the posts of CPT to a user who has the custom role.
-
AuthorPosts