Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
If the relationship is saved properly, please try to deactivate all plugins except Meta Box, MB extension plugins, switch to a standard theme of WordPress and recheck the connection in the admin column and frontend.
Peter
ModeratorHello Scott,
The toggle password button is not supported displaying on the login form. I will inform the development team to consider supporting this button on the form.
Peter
ModeratorHello,
Yes, it helps you to define where to load the field group (meta box), not a single field. Refer to the documentation https://docs.metabox.io/extensions/meta-box-include-exclude/
September 11, 2023 at 11:21 PM in reply to: set current userid as default value in hidden field #43209Peter
ModeratorHello Leo,
Yes, it is possible. You need to use the code to get the current user ID then register the meta box and custom field and assign the user ID to the default value of the field. For example:
add_filter( 'rwmb_meta_boxes', 'your_prefix_hidden' ); function your_prefix_hidden( $meta_boxes ) { $current_user_id = get_current_user_id(); $meta_boxes[] = [ 'title' => __( 'hidden', 'your-text-domain' ), 'id' => 'hidden', 'post_types' => ['post'], 'fields' => [ [ 'id' => 'test_hidden_field', 'type' => 'hidden', 'std' => $current_user_id, ] ], ]; return $meta_boxes; }September 11, 2023 at 11:10 PM in reply to: 2 different taxonomy fields save the value of the last field #43208Peter
ModeratorHello,
As I said above, the
taxonomyfield sets the post terms. The lasttaxonomyfield will override other taxonomy field values and alltaxonomyfields will display the value of the last field.If you want to use it as 2
textfields which is the post meta (not post term), please use the fieldtaxonomy_advanced.Read more in the documentation https://docs.metabox.io/fields/taxonomy/
https://docs.metabox.io/fields/taxonomy-advanced/Peter
ModeratorYes, I've escalated this issue to the development team to improve the case of the subfield and group field having a similar field ID. Thank you.
September 11, 2023 at 10:25 PM in reply to: ✅get_users() not showing the correct order of relationship #43206Peter
ModeratorHello,
Please open a new topic and attach the screenshots. This ticket will focus on the display relationship users in the frontend.
Peter
ModeratorHello Skauer,
Please contact us here https://metabox.io/contact/
the development team will help you to check the issue.Peter
ModeratorHello,
The JS source map file is used to debug the error easier, it does not cause the error on your site. The popper and tippy js files are the library of Bootstrap so I think there is a plugin or block of code that conflicts with the code in those files.
Please read more here https://stackoverflow.com/questions/21719562/how-can-i-use-javascript-source-maps-map-files
September 9, 2023 at 8:21 AM in reply to: Issue with Relationship not displaying connected posts #43187Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorNot yet. The development team is still working on this issue. I will let you know when I have any information.
September 8, 2023 at 10:30 PM in reply to: 2 different taxonomy fields save the value of the last field #43183Peter
ModeratorHello,
The
taxonomyfield sets the post-term so if you have two fields on a page, one will not work properly and it is expected. You should use one taxonomy field only.Peter
ModeratorHello Marco,
After making some tests, if I change the field ID
event_with_categoriesto a unique one likeevent_with_categories1then the conditional logic works properly. Can you please confirm this?It might happen because the group field has the similar/wrapper ID as this radio field
group_event_with_categories.September 7, 2023 at 11:05 PM in reply to: ✅Settings Pages In Customiser Error after last update and other issues #43172Peter
ModeratorHello,
I've escalated this issue to the development team to fix it in the next update. Thank you.
September 7, 2023 at 9:06 PM in reply to: ✅When post type REST API set to TRUE it limits authors #43170Peter
ModeratorHello,
I don't see that issue on my site. The list of users in the Quick edit is the same when editing the post. Please try to generate the PHP code and register the CPT by code then deactivate all plugins, switch to a standard theme of WordPress then check this issue again.
-
AuthorPosts