Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
I'm going to inform the developer team to consider adding a setting to exclude a subfield from the clone group to the to-do list for the future development of the plugin. Thanks.
Long Nguyen
ModeratorHi Marco,
If you are using the builder to create the post type (via UI), please generate the PHP code and add it to the file functions.php in your theme/child theme folder to translate the CPT strings.
The builder saves the CPT settings (including strings) in the database as a post so WPML might not translate strings from post data.
Read more on this documentation https://docs.metabox.io/extensions/mb-custom-post-type/#getting-php-code
Long Nguyen
ModeratorHi Yasmine,
If users create/submit a post, WordPress automatically add them as the author of the post (university). So if you want to show the universities that belong to an author, I think no need to create a relationship between user and university, just create a query with the author parameter.
Please read more on this documentation https://developer.wordpress.org/reference/classes/wp_query/#author-parameters
Long Nguyen
ModeratorHi,
It is beyond the scope of support of Meta Box. MB also does not support deleting the field value in the database. You need to create a custom code to do that.
Long Nguyen
ModeratorHi David,
Using the custom block means you need to output the field value in a block with coding. It does not work as a builder to just drag and drop to show the value like that. You can see the tutorial here https://docs.metabox.io/extensions/mb-blocks/#video-tutorial
April 18, 2022 at 11:02 PM in reply to: ✅Feature request: Confirmation, lost password, etc email templates #35703Long Nguyen
ModeratorHi,
Thanks for your feedback.
I'm going to inform the developer team to consider adding it to the to-do list for the future development of the plugin.
Long Nguyen
ModeratorHi,
The generated code is missing the ID of the settings page that is required when creating a settings page. I've escalated this issue to the development team to fix it in the next update.
add_filter( 'mb_settings_pages', 'register_settings__admins' ); function register_settings__admins( $settings_pages ) { $settings_pages[] = [ 'menu_title' => 'Admins Settings', 'option_name' => 'settings_admins', 'id' => 'settings-admins', //here ... ]; return $settings_pages; }Read more on the documentation https://docs.metabox.io/extensions/mb-settings-page/#using-code
Long Nguyen
ModeratorHi Gerard,
It's not possible to exclude a subfield from a cloning group. But you can set the subfield to not clone the default value, please refer to this documentation https://docs.metabox.io/extensions/meta-box-group/#clone-default-values
Or find a filter here https://docs.metabox.io/category/filters/
April 18, 2022 at 11:07 AM in reply to: ✅Website (wordpress) slows down dramatically when I enable Metabox plugin #35696Long Nguyen
ModeratorHi,
I've issued you a full refund. Let me know if you have any questions.
Long Nguyen
ModeratorHi Timo,
It is added to the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#faq
April 17, 2022 at 4:01 PM in reply to: ✅Labels are not WCAG/ADA accessibility compliant when using groups and/or clones #35681Long Nguyen
ModeratorHi Stephen,
We are working on this issue and it will be fixed in the next update. Thanks.
Long Nguyen
ModeratorHi OldGreg,
Thanks for your feedback.
I will inform the development team to consider support an option to duplicate a field group. For now, you can simply do it with 2 steps, export a field group and re-import it, remember to change the field group ID later.
https://docs.metabox.io/extensions/meta-box-builder/#export--importLong Nguyen
ModeratorHi OldGreg,
Thanks for your feedback.
I will inform the development team to consider supporting the field URL. If you want to add the URL behind the text, please use the field
textareaorWYSIWYG.April 16, 2022 at 6:53 PM in reply to: ✅Website (wordpress) slows down dramatically when I enable Metabox plugin #35673Long Nguyen
ModeratorHi,
Thanks for your feedback.
I've just found the issue with the custom table still enabling after creating a new one. For other issues that slow down your site, I'm not able to find it with the lack of accessibility on your site, just work with Query Monitor. However, if you have some free time, please create a fresh WP install and activate Meta Box, MB AIO to check the loading time. I do not see that on my testing site.
April 16, 2022 at 6:47 PM in reply to: How to make a comparison table between CPT Product with Custom Fields #35672Long Nguyen
ModeratorHi,
You can pass the variable
$post_idto the helper function in the loop to get the field value.$marka = rwmb_meta( 'field_id', '', $post_id ); echo $marka; -
AuthorPosts