Forum Replies Created
-
AuthorPosts
-
December 18, 2023 at 7:32 PM in reply to: How to display a repeatable taxonomy group image field as an admin column #44125
Peter
ModeratorHello,
Currently, the MB Admin Columns extension doesn't work with subfields in a group. You can try to use the plugin Admin Columns Pro to show a subfield admin column.
https://www.admincolumns.com/meta-box-integration/Peter
ModeratorHello,
How do you add the variable
$object_idto the email? I use the sample code below to add the object ID to thewp_mail()function and use the plugin WP Mail Logging to log the email and the object ID is logged correctly.function set_sticky_status($object_id) { $to = '[email protected]'; $subject = 'The subject'; $body = 'Object ID: ' . $object_id; $headers = array('Content-Type: text/html; charset=UTF-8'); wp_mail( $to, $subject, $body, $headers ); }December 17, 2023 at 11:05 PM in reply to: Meta Box field setting in the dropdown, and it is grayed out #44118Peter
ModeratorHello,
In the template MB Group Skin, you can select the subfields in the
groupfield only. If you don't know how to create agroupfield, please follow the documentation https://docs.metabox.io/extensions/meta-box-group/If you use a normal (top) field, please use the Elementor template, don't use the template MB Group Skin.
December 17, 2023 at 11:00 PM in reply to: ✅image_upload - Custom Field - does not display uploaded image in mobile devices #44117Peter
ModeratorHello,
I don't see that issue on my demo site, here is the screenshot https://imgur.com/oiQEvKY
You can try to deactivate all plugins except Meta Box, MB extension plugins, switch to a WordPress theme and check this again.
Peter
ModeratorHello,
Can you please share some screenshots or a screen record of the issue on your site? You can upload it to Google Drive or some hostings and share the URL here.
Peter
ModeratorHello,
You can try to use the Classic Editor and use the code below to output the variable
$object_idto see if it works:function set_sticky_status($object_id) { echo $object_id; die('test12345'); }December 16, 2023 at 11:36 AM in reply to: MB Relationships - Database error for relationship between users_to_posts #44105Peter
ModeratorHello,
Yes, I test this feature on my demo site and do not see that issue. If you don't like sharing credentials, please create a new WordPress site and add only one relationship code to see how it goes.
Peter
ModeratorHello,
The field "custom_html" doesn't save the data and it doesn't have a field ID. It is used to display an instruction for the user in the admin area. I will inform the development team to remove its field ID in the builder.
Following the documentation https://docs.metabox.io/fields/custom-html/December 15, 2023 at 2:22 PM in reply to: How to Get an Image To display based on Custom Field Value #44099Peter
ModeratorHello,
In the admin area, you can use the extension MB Conditional Logic to show/hide a field based on another field value.
In the frontend, you can create an
ifstatement to check a field value before outputting another field value. I think it is a simple code, like this.if( $willing_to_help_field == true ) { echo $icon_field; }Peter
ModeratorHello,
I see the slowdown issue of the field group when having more custom fields. I will forward them to the development team to check them and improve the performance.
Regarding the group data, it works as the standard serialized data of WordPress and is a core feature. There isn't an option to change the data format to JSON. If you want to search and replace the value in the DB, you can use the plugin https://wordpress.org/plugins/better-search-replace/ which supports serialization.December 15, 2023 at 10:10 AM in reply to: MB Relationships - Database error for relationship between users_to_posts #44097Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a look.December 14, 2023 at 3:45 PM in reply to: MB Relationships - Database error for relationship between users_to_posts #44089Peter
ModeratorHello,
If there are two meta boxes, you should have two relationships in the code or in the builder. Please recheck this and remove one and recheck the error in the post screen also.
Peter
ModeratorHello,
There isn't a time duration field. You can get the start and end time field value then calculate the duration and output it in the frontend. Following the documentation https://docs.metabox.io/fields/time/
Peter
ModeratorHello,
It looks like the issue in this topic https://support.metabox.io/topic/js-call-mb_frontend_form-shortcode/
You can create a button and redirect the user to the frontend form page to edit the post.December 14, 2023 at 11:46 AM in reply to: ✅Confirm email change via unique link - for existing user account #44086Peter
ModeratorHello,
Thank you for your feedback.
This feature is not supported in the frontend. I will inform the development team to consider supporting this in future updates.
-
AuthorPosts