Forum Replies Created
-
AuthorPosts
-
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/Peter
ModeratorHello,
It sounds like a WordPress basic question. You can use the function
get_terms()to get terms of a taxonomy and display them in the frontend.
Follow the documentation https://developer.wordpress.org/reference/functions/get_terms/August 11, 2023 at 8:55 PM in reply to: Import csv/excel to a repeater field in options page? #42894Peter
ModeratorHello,
Do you mean to migrate data from a repeater field on an options page of ACF to Meta Box? If yes, please follow the documentation https://metabox.io/plugins/mb-acf-migration/
Or if you want to import data to the settings page of Meta Box, you can use the backup file.
https://docs.metabox.io/extensions/mb-settings-page/#backup--restore-settingsAugust 10, 2023 at 9:50 PM in reply to: Assigning First and Last Name from registration from to User Profile #42884Peter
ModeratorHello,
I use this sample code to add a first name field to the field group and assign it to the user type.
$meta_boxes[] = [ 'title' => __( 'User Meta', 'your-text-domain' ), 'id' => 'user-meta', 'type' => 'user', 'fields' => [ [ 'name' => __( 'First Name', 'your-text-domain' ), 'id' => $prefix . 'first_name', 'type' => 'text', ], ], ];and use this shortcode to display a registration form
[mb_user_profile_register password_strength='false' id="user-meta" show_if_user_can="manage_options"]
`the value of the first name field displays as well in the admin area after creating a user. Can you please export your field group to a JSON file and share it here? I will take a look.
Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Peter
ModeratorHello,
I've not experienced this issue with Squirrly SEO plugin before. If you want to use an SEO plugin, you can take a look at the plugin Slim SEO. It is developed by our development team and works well with Meta Box.
https://wpslimseo.com/products/slim-seo-schema/August 10, 2023 at 8:25 PM in reply to: User Profile Fields not displaying in Elementor dynamic tags selector #42876Peter
ModeratorHello,
It's the user meta so you should use the function
get_user_meta()in your custom shortcode.If you want to use the Meta Box shortcode, you should add the user ID and object type to the shortcode, for example:
[rwmb_meta id="ehven_adopting_family_profile_display_name" object_id="1" object_type="user"]
where 1 is the user ID.Read more in the documentation https://developer.wordpress.org/reference/functions/get_user_meta/
https://docs.metabox.io/shortcode/Peter
ModeratorHello,
I do not see that issue on my local site, here is the screen record https://imgur.com/4tzmIvH
After the first submit click, the post is created as well. The form is still displayed because the attribute
editis set totrue.August 9, 2023 at 6:00 PM in reply to: ✅MB Group With File Advanced & Oxygen Builder Repeater #42860Peter
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,
I'm not sure. It's the tutorial about using MB Views to display field values in the frontend. Do you have any issues when following this tutorial?
Peter
ModeratorHello,
You can read more about post templates in the WordPress documentation https://developer.wordpress.org/themes/template-files-section/post-template-files/
If you are not familiar with coding and want to apply the code on your site, please contact Breakdance support and ask for implementing the code.
Or contact us here https://metabox.io/contact/, our development team will help you with an extra fee.
Peter
ModeratorHello Johnson,
Please export the field group to a JSON file and share it here. I will import the field group to my demo site and check the issue.
Read more in the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import -
AuthorPosts