Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
You can find the panel ID in the theme or plugin source code where it is registered. Please read more on the documentation https://developer.wordpress.org/themes/customize-api/customizer-objects/#panels
I recommend contacting the theme or plugin support to ask for providing the panel ID.
Peter
ModeratorHello Aaron,
I'm not sure if Meta Box strings are translated to your language 100%, you can check the untranslated strings here https://translate.wordpress.org/projects/wp-plugins/meta-box/
If the string is not translated, it will display in the English language. If it does not work, can you please share some screenshots of the issue?Peter
ModeratorHello,
You can use the setting
stdto set the default value for a field. But please be aware that this setting will not work if the field or field group already saved value to the database. Read more on this documentation https://docs.metabox.io/creating-fields-with-code/#why-does-not-my-default-value-workPeter
ModeratorHello,
For the radio field, please use the setting
disabledinstead ofreadonly. Please read more on this link https://support.metabox.io/topic/readonly-attribute-doesnt-work-on-radio-field/November 22, 2022 at 11:12 PM in reply to: how to save image field vaues in serilazed format in the database #39273Peter
ModeratorHello,
It is the design of the image fields when saving each value in one row to the database. If you want to save values in serialized format, please consider using the custom table or registering it as a subfield in a group field. Please read more on the documentation
https://docs.metabox.io/extensions/mb-custom-table/
https://docs.metabox.io/extensions/meta-box-group/Peter
ModeratorHello Dragos,
Thanks for reaching out.
1. It is not possible to use one field in two field groups. One field can be registered under one field group (meta box) only.
2. Which media field type you are using? If it has the setting
'multiple' => truein the default field settings, it is expected result to save the array value (serialized) to the database. You can test with the fieldsingle_imageto see how it works.November 22, 2022 at 10:55 PM in reply to: Profile pages using MB User Profile and MB Beaver Builder Integration #39271Peter
ModeratorHello Jan,
1. The default role when registering via registration shortcode is Subscriber. You can change it to another role like Vendor in the shortcode attribute. Like this
[mb_user_profile_register id="meta-box-id" role="vendor"]2. Can you please deactivate all plugins except Meta Box, MB extensions and switch to a standard theme of WordPress (2022) and recheck this issue?
November 22, 2022 at 10:50 PM in reply to: ✅How to make a download-button from "File Upload" field? #39269Peter
ModeratorHello Sascha,
Meta Box is not compatible with Kadence Block yet. So I think it's not possible to add the
filefield URL to the image block of Kadence in this case. But you can create a custom shortcode to output the image with file URL download, please follow the documentation
https://codex.wordpress.org/Shortcode_API
https://docs.metabox.io/fields/file-upload/#template-usagePeter
ModeratorHello,
Thanks for sharing your solution. Currently, there is no option to require a user login to view the frontend submission form. You can just output the shortcode in a condition to check the user login with WordPress function
is_user_logged_in()
https://developer.wordpress.org/reference/functions/is_user_logged_in/Peter
ModeratorHello there,
Unfortunately, it is not possible to pass the custom field value to the URL and fill in the form, only the post ID is allowed.
November 21, 2022 at 10:27 PM in reply to: Multiple type file fields in cloneable groups not cloning properly #39249Peter
ModeratorHello Virgile,
Thank you for your feedback.
I see that issue, I've escalated this to the development team to fix it in the next update. Let me know if you have any questions.
Peter
ModeratorHello,
2. You can read more about frontend submission shortcode attributes in the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#shortcode-attributes
all attributes should be added to the frontend submission shortcode, there is 1 attribute for the frontend dashboard shortcode is
edit_page.You can read about the post status in WordPress documentation https://wordpress.org/support/article/post-status/
3. The
confirmationattribute only allow passing text, HTML tags are not allowed.=> The shortcode should be
[mb_frontend_form id="caractnendo" post_type="nendoroid" post_fields="title, thumbnail" post_status="draft" confirmation="Votre contribution a bien été envoyée. Elle sera prochainement vérifiée puis validée. Accédez à vos contributions en." label_title="Titre" label_thumbnail="Photo principale"]November 21, 2022 at 10:05 PM in reply to: ✅Bug (probably): custom field don't appear on edit media modal #39247Peter
ModeratorHello,
Thank you for your feedback.
I got the issue. The problem happens when you upload images from the frontend form. I've escalated this issue to the development team to fix this issue in future updates.
Here is the video to reproduce the issue https://www.berrycast.com/conversations/7d5e8822-83d1-5728-817a-43db576bec5c
Peter
ModeratorHello there,
When inserting a post, the post title is sanitized by default, the HTML tags are stripped. You can read more on the WordPress documentation https://developer.wordpress.org/reference/functions/wp_insert_post/#security
The quotation mark will not break the code itself if you store it in a variable.Peter
ModeratorHello Felix,
As you can see in Step 5 of the article, we use the widget Posts of the Elementor builder to show the posts. So if you want to order posts by post title (member name), please find the option Order By in the widget settings. Or if want to order posts by something else, please contact Elementor support to ask for further assistance.
https://metabox.io/create-team-members-page-p1-meta-box-elementor/ -
AuthorPosts