Forum Replies Created
-
AuthorPosts
-
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--importAugust 9, 2023 at 5:30 PM in reply to: WYSIWYG Custom Field Code Being Sanitized Even With Sanitization Off #42856Peter
ModeratorHello,
I've escalated this issue to the development team to check it and I will let you know if I have any information. I see the same issue when editing the product description of WooCommerce, screen record https://imgur.com/k5FM17R
However, it is still displayed as well in the frontend if you use the helper function
rwmb_meta()to output the field value. If you have an issue when using Bricks builder, please try to contact their support to get more info.August 8, 2023 at 10:00 PM in reply to: ✅issue using rwmb_frontend_dashboard_delete_action filter to remove delete icon #42848Peter
ModeratorHello,
Thanks for your feedback.
I also see that issue on my demo site. I've escalated this issue to the development team to fix it in the next update.
Peter
ModeratorHello,
Please share the page that has the frontend submission form on your site, I will take a closer look.
Besides that, do you use any custom code to customize the form? You can try to create a new page and put the simple shortcode to the page content
[mb_frontend_form post_fields='title,content']and recheck the issue on this page.August 8, 2023 at 9:22 PM in reply to: Published Group Skins not displaying in Elementor MB Group element #42844Peter
ModeratorHello,
I test this feature again on my demo site but do not see any issues. You can try to create a new group skin and add some value to the post then check this issue again.
Also, please try to deactivate all plugins except Meta Box, MB extension plugins and switch to a standard theme of WordPress and see if it helps.August 8, 2023 at 9:06 PM in reply to: ✅500 server error when posting data containing non-existent fields #42842Peter
ModeratorHello,
Thanks for your feedback.
I will inform the development team to consider improving this case in future updates.
-
AuthorPosts