Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
The view content is saved to the database as a post so I'm not sure if WPML String Translation can scan the post to find the string. You should use the PHP code to let that plugin scan the code to translate the string.
Peter
ModeratorHello,
Maybe your issue is related to the Object Cache Pro plugin. Read more in this topic https://support.metabox.io/topic/issue-with-meta-box-relationships/
September 13, 2023 at 8:34 PM in reply to: ✅MetaBox's jQuery UI Dialogue CSS is throwing 404 errors #43240Peter
ModeratorThe icons are removed from this commit https://github.com/wpmetabox/meta-box/commit/f5a427e4a0deb6dbd15b47cb604cf00f21a8edbb
Peter
ModeratorHello,
Maybe it's a conflicting issue. This is a premium plugin and we have not tested it before. You can also contact Object Cache Pro support and ask for more information. Just one note: the relationship data is saved in a custom table wp_mb_relationships.
Peter
ModeratorHello,
If you just output the custom field value with Bricks builder, I think there is no issue there. And you can use the default Page of WordPress. To filter the value in the current language, you should ask the language plugin support for more information.
September 12, 2023 at 10:19 PM in reply to: Users Losing Access to Post Submission with Admin Interference #43224Peter
ModeratorHello,
Where do you edit the post of the user? In the admin area? If so, the author of the post will not be changed and the user still see their post in the frontend dashboard.
September 12, 2023 at 9:53 PM in reply to: ✅MetaBox's jQuery UI Dialogue CSS is throwing 404 errors #43222Peter
ModeratorHello,
Thanks for the feedback. I've escalated this issue to the development team to remove the icons that do not exist.
Peter
ModeratorHello,
Here is the screenshot when I test with the German language https://imgur.com/yiLWdj4
I don't see that issue. Please share the steps to reproduce the issue. You can also deactivate all plugins except Meta Box, MB extensions, switch to a standard theme of WordPress and recheck this. Or even re-install Meta Box on the site.
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.
-
AuthorPosts