Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
There isn't a way to display the field group on your settings page. You can create your own fields and update the value of the MB fields that display on the order page.
Refer documentation https://developer.wordpress.org/reference/functions/update_post_meta/August 15, 2023 at 11:02 PM in reply to: What MB CustomField Select is better for later filtering? #42928Peter
ModeratorHello,
There are 2 select fields supported by Mea Box, select and select_advanced. They can work with FacetWP for filtering posts. We also have an integration plugin to be compatible with FacetWP
https://metabox.io/plugins/meta-box-facetwp-integrator/Peter
ModeratorHello,
You should select the option Submenu instead of the Top-level menu as in your screenshot. Please check this https://imgur.com/2rv4cUq
Peter
Moderator>> can I get this image and show it with WP gallery
No. As I understand, the WordPress gallery uses the image ID (attachment post type) to display images in the frontend. If you use the custom folder, the attachment post is not created so there are no IDs to add to the WordPress gallery.Peter
ModeratorHello,
I see that issue in the admin area. I will inform the development team to improve the field template loading in future updates.
Peter
ModeratorHello,
If you are using Meta Box AIO, please go to Meta Box > Extensions > Disable extension MB Frontend Submission.
And also can deactivate all plugins except Meta Box, MB AIO, switch to another theme and check this issue again.Peter
ModeratorHello,
It looks so complicated. I think you can try to update the post title without the condition
if ($new_title !== $services_post->post_title)
in variation 1 and see how it works. If it still does not work, please contact us here https://metabox.io/contact/
We offer customization services and our development team can help you with an extra fee.Peter
ModeratorHello,
1. You can use the field
fileorimageto upload images to a custom folder. Read more in the documentation https://docs.metabox.io/fields/file/#custom-upload-folder1.1. Then you cannot use the Media Library to manage images uploaded to the custom folder. And there isn't a feature to crop them to thumbnails as WordPress does.
2. Media fields (file or image) of Meta Box only support users to upload media files to WordPress. They d not support organize files. You can use a third-party plugin to do that.
Peter
ModeratorHello Yasmine,
Currently, MB Frontend Submission does not support multiple steps form like that. You can use anything you want like tabs or next/prev button but you need to create some custom Javascript code on your own to do that.
Peter
ModeratorHello Jorge,
If your plugin uses a custom page (like a settings page) to create orders in the admin area, the field group won't display there because it is associated with the post type "shop_order" and only displays when editing a post of that post type.
Peter
ModeratorHello,
Do you add the frontend submission form on pages? I think there is a media field in the form like
file,file_upload,image... It supports uploading media files to the form on your site.August 12, 2023 at 3:23 PM in reply to: Import csv/excel to a repeater field in options page? #42903Peter
ModeratorHello,
MB Settings Page does not support an option to import data. You can find a third-party plugin to import CSV file to the settings page.
August 12, 2023 at 2:55 PM in reply to: ✅Importing a Post-to-Post Relationship Connection from a CSV via WP Import #42902Peter
ModeratorHello,
Currently, the plugin WP All Import is not fully compatible with Meta Box and its extensions to import value to a custom table. You can try to use the plugin WordPress Ultimate CSV, XML Importer Pro, follow the documentation https://www.smackcoders.com/documentation/wp-ultimate-csv-importer-pro/meta-box-custom-field-cloneable
Peter
ModeratorHello,
If you have
taxonomyortaxonomy_advancedfield in the field group and use the Gutenberg editor (not Classic Editor), please disable the option "Remove default meta box" and check this issue again.
Screenshot https://imgur.com/7JjuY7YPeter
ModeratorHello,
You can try to create a
textfield and enable an admin column for this field. After creating/updating the post, you can use the action hooksave_postto update the post slug for the field and get the post slug via$_POST['post_name'].
Read more about action hook in the documentation https://developer.wordpress.org/reference/hooks/save_post/ -
AuthorPosts