Forum Replies Created
-
AuthorPosts
-
December 22, 2023 at 10:32 PM in reply to: Elementor Icon Box meta data does not Display on frontend #44161
Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a look.December 22, 2023 at 10:24 PM in reply to: how can i disable metaboxes if gutenberg editor is enabled #44160Peter
ModeratorHello,
You might need to use the code to check the block or classic editor is available when editing the post and registering the meta box. For example:
if( code_check_editor_here ) { add_filter( 'rwmb_meta_boxes', 'your_prefix_function_name' ); } function your_prefix_function_name( $meta_boxes ) { $prefix = ''; $meta_boxes[] = [ ... ]; return $meta_boxes; }December 21, 2023 at 10:08 PM in reply to: how can i disable metaboxes if gutenberg editor is enabled #44152Peter
ModeratorHello,
Do you mean deactivating the plugin Meta Box if the Block editor is enabled? Or a specific meta box (field group) on your site?
December 21, 2023 at 9:57 PM in reply to: MB Relationships - Database error for relationship between users_to_posts #44151Peter
ModeratorHello,
You are correct, I can reproduce the issue 2 meta boxes with two plugins Meta Box and MB Relationships. But not the error message. It works if you use the plugin Meta Box AIO.
I've escalated this issue to the development team to fix it in the next update.Thank you.
December 21, 2023 at 9:38 PM in reply to: Elementor Icon Box meta data does not Display on frontend #44150Peter
ModeratorHello Felix,
You should scroll down to the custom post type section > select the field in the Dynamic data list of Elementor. Screenshot https://imgur.com/BraApot
Regarding the notification email feature, I will inform the development team to check this.
December 19, 2023 at 8:41 PM in reply to: โ Reciprocal relationship does not display metabox in the "to" post type #44142Peter
ModeratorHello Fabien,
You should disable the option reciprocal in this case. This option is used when you create a relationship between the same post type/object, for example: from
officetooffice. It will prevent displaying two meta boxes on one post.December 19, 2023 at 8:35 PM in reply to: โ download button acts differently when triggered through field vs when hardcoded #44141Peter
ModeratorHello Eddy,
What is the audio field type? I assume it is
filefield. Then you can output the file URL in the HTML code. For example:<div class="wp-block-file"><a href="{{ clone.audio.url }}" class="wp-block-file__button wp-element-button" download>Download</a></div>December 19, 2023 at 7:07 PM in reply to: MB Relationships - Database error for relationship between users_to_posts #44140Peter
ModeratorHello,
I'm using PHP 7.4.33 on my demo site and don't see that. Also, according to the documentation, we recommend using PHP 7.4 or greater with Meta Box.
https://docs.metabox.io/installation/Peter
ModeratorHello,
So the action hook
rwmb_{$field_group_id}_after_save_postis working properly, just the issue with your custom code in this case.
I will mark this ticket as Resolved here.December 19, 2023 at 6:54 PM in reply to: โ image_upload - Custom Field - does not display uploaded image in mobile devices #44138Peter
ModeratorHello,
I've tested on an online staging site (fresh installation) and a real mobile, not a local site. I'm not sure what's wrong with your local site but glad to hear it works on the live site.
Peter
ModeratorHello,
Do you add images to the image field on the settings page? Please add some images and check this issue again.
Peter
ModeratorHello,
It looks related to this issue https://support.metabox.io/topic/error-when-using-cloneable-groups-and-group-skin/
Please wait for the next update of the plugin MB Elementor Integrator to fix the issue.Peter
ModeratorHello,
This issue has been escalated to the development team to fix it. I will let you know when I have any information.
December 18, 2023 at 7:32 PM in reply to: How to display a repeatable taxonomy group image field as an admin column #44125Peter
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 ); } -
AuthorPosts