Forum Replies Created
-
AuthorPosts
-
November 22, 2022 at 10:50 PM in reply to: ✅How to make a download-button from "File Upload" field? #39269
Peter
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/Peter
ModeratorHello there,
It looks like the field
image_uploaddoes not set the post parent (Uploaded to) for the uploaded images. I will inform the development team to consider supporting this feature in future updates.Meantime, you can try to set the post parent (Uploaded to) for the images manually. Or if you are familiar with coding, each image is a post (post type attachment), you can update the image data with the WordPress function wp_update_post().
Refer to this topic https://wordpress.stackexchange.com/questions/79934/how-to-update-post-parentPeter
ModeratorHello Charlotte,
1. There is no option to remove the delete button in the frontend dashboard, you can use this filter hook to remove it
rwmb_frontend_dashboard_delete_actionor use this custom CSS code to hide it.mbfs-posts .mbfs-actions form { display: none; }2. You can set the post status to
draftin the frontend shortcode, then approve the posts in the backend on your own.3, 4. Can you please share the shortcode that you are using and some screenshots of the issue?
Peter
ModeratorHello there,
Can you please let me know which image field you are using? If you use the field
image_advanced, there are image thumbnails displayed for the selected images.
https://docs.metabox.io/fields/image-advanced/November 20, 2022 at 11:05 AM in reply to: Taxonomy Advanced field - How to filter the taxonomies that we can select #39229Peter
ModeratorHello Adrien,
As I understand, you want to display terms in the selection of the
taxonomy_advancedbased on the selected term in the default custom taxonomy box of Meta Box. It is not possible with the fieldtaxonomy_advanced.I think you can use the field
selectinstead of the fieldtaxonomy_advanced. You can create a custom PHP callback function that returns options for theselectfield from the selected term. But the options will display on loading, it will not display immediately after selecting the term in the default custom taxonomy box.Here is an example to create a custom callback function https://support.metabox.io/topic/callbacks-for-the-controls-with-choices/
Peter
ModeratorHello there,
Currently, there is no option to change/customize the confirmation email template sent to the user. I will inform the development team to consider supporting this option in future updates.
Peter
ModeratorHello Tobias,
Please try to follow these steps to troubleshoot the issue
- Deactivate all plugins except Meta Box, MB extensions
- Switch to a standard theme of WordPress (2022)Let me know how it goes.
November 20, 2022 at 10:34 AM in reply to: ✅Terms meta are not being deleted after deleting the term #39226Peter
ModeratorThanks for your additional information.
Yes, I see that issue that's why I recommend using the public API
delete()to delete the row in the custom table. I've also escalated this issue to the development team to fix it in the next update. -
AuthorPosts