Forum Replies Created
-
AuthorPosts
-
December 21, 2023 at 9:38 PM in reply to: Elementor Icon Box meta data does not Display on frontend #44150
Peter
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 ); }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'); } -
AuthorPosts