Forum Replies Created
-
AuthorPosts
-
August 8, 2023 at 9:02 PM in reply to: Image upload: validation message on max file size + finish uploading #42841
Peter
ModeratorHello,
1. No, there is a description in the documentation https://docs.metabox.io/fields/file-upload/
MIME type of files which we want to show in the Media Library. Note: this is a filter for items in the media popup, it doesn't restrict file types when uploading.2. Just the extension. Here is an example:
'mime_type' => 'application,audio,video,jpeg'Peter
ModeratorHello,
In Meta Box, the class is
rwmb-seamless. You can use this CSS code for example:.postbox:not(.rwmb-seamless) .rwmb-field .rwmb-label { display: none; }August 7, 2023 at 10:00 PM in reply to: Is it possible to get all post MB field values in call? #42831Peter
ModeratorHello Rob,
You can use the function
rwmb_get_object_fields()to get all custom fields of an object (post, term, settings page). Refer to the documentation https://docs.metabox.io/functions/rwmb-get-object-fields/August 7, 2023 at 9:54 PM in reply to: Image upload: validation message on max file size + finish uploading #42830Peter
ModeratorHello,
Please use the field
file_uploadand its feature Binding events to display a message when a file is uploaded or when an error occurs.
https://docs.metabox.io/fields/file-upload/#binding-eventsAugust 7, 2023 at 9:39 PM in reply to: โ 500 server error when posting data containing non-existent fields #42828Peter
ModeratorHello,
MB Rest API only works with the custom fields created by Meta Box. You should update the field
testonly. Follow the documentation https://docs.metabox.io/extensions/mb-rest-api/August 5, 2023 at 7:34 PM in reply to: Custom Post Type: "Quick Edit" changes the owner to the current logged in user #42822Peter
ModeratorHello,
Please try to deactivate all plugins except Meta Box, MB extension plugins and switch to a standard theme of WordPress then check this issue again.
Peter
ModeratorHello,
I think you have the same issue on this topic https://support.metabox.io/topic/custom-field-color-picker-on-category-dd-says-empty-but-its-not/
You should pass the term ID to the third parameter of the helper function
rwmb_meta()to get the term meta value. If you use the Bricks builder to output the value and it does not work, please contact Bricks support to get more information.Peter
ModeratorHello,
You may need to use the plugin MB Revision, please follow the documentation https://docs.metabox.io/extensions/mb-revision/
August 4, 2023 at 8:42 PM in reply to: User Profile Fields not displaying in Elementor dynamic tags selector #42815Peter
ModeratorHello,
Yes, it works with some simple fields like text, textarea ... I will create a feature request and ask the development team to support the user meta fields in the future.
Peter
ModeratorHello,
I will inform the development team to consider supporting this feature in future updates.
Thanks.
August 3, 2023 at 9:15 PM in reply to: Custom Field (color picker) on Category DD Says "Empty" but it's not. #42810Peter
ModeratorHello,
As I can see, the page https://news.seoul.dulwich.org/whole-school-23-june-2023/ is a single post page. While you are trying to get term meta on the page so it does not work.
Or maybe the Bricks builder does not support outputting the term meta value. You can try to contact their support to get more information.
Or try to use the shortcode to output the field value
[rwmb_meta id="cat-color" object_id="15" object_type="term"]Read more in the documentation https://docs.metabox.io/shortcode/
Peter
ModeratorHello,
In case of using Oxygen Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/Peter
ModeratorHello,
It is normal. In the default table wp_postmeta, the field value is also not deleted if you delete a custom field from the field group or code.
You can use the API function to delete the field value in the custom table https://docs.metabox.io/extensions/mb-custom-table/#delete
or use an SQL query to delete it.August 2, 2023 at 10:27 PM in reply to: Unable to access my custom model link listed under my custom menu setting page. #42801Peter
ModeratorHello,
The development team is still working on this issue. You can create the model as the top menu to prevent this issue.
August 2, 2023 at 10:25 PM in reply to: User Profile Fields not displaying in Elementor dynamic tags selector #42800Peter
ModeratorHello,
To display the user meta field, you can add a Heading widget > click on Dynamic tags. In the Site section, you can select the option User Info:
- Field: User Meta
- Key: add the field ID here.
screenshot https://imgur.com/gJXqggCLet me know how it goes.
-
AuthorPosts