Forum Replies Created
-
AuthorPosts
-
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.Peter
ModeratorHello John,
Thanks, I see that issue. I've escalated it to the development team to check. I will let you know if I get any information from the team.
November 18, 2022 at 11:06 PM in reply to: ✅Terms meta are not being deleted after deleting the term #39206Peter
ModeratorHello Alaan,
But in the case of taxonomies, terms are being permanently deleted directly, there's no trash for terms.
It's the standard behavior of WordPress itself, the term will be deleted permanently instead of moving to the trash like the post.
I think because of this difference then the term meta in the custom table is also not deleted with the term. If you want to delete the term meta in the custom table, please use the supported API
delete(), read more on the documentation https://docs.metabox.io/extensions/mb-custom-table/#deleteNovember 18, 2022 at 10:53 PM in reply to: ✅update_post_meta for cloneable fields in a group. #39205Peter
ModeratorHello Macky,
The clone field in your code is the text field, not the group. So the variable $post_meta will look like this
$post_meta = Array ( [fr_guest_name] => Array ( [0] => Amet tempor nisi, [1] => Condimentum a, [2] => Mollis sed posue ) )You can add add a test field value for a post manually, then get field value from the database and output the value with the function
var_dump()orprint_r()to see the value structure.November 18, 2022 at 10:35 PM in reply to: PHP notice with 'MB Term Meta' enabled and WP 6.1.1 #39204Peter
ModeratorHello Phil,
Thank you for your feedback. There are some changes in the new version of WordPress 6.1 and it might cause the issue. I will inform the development team to update our plugin to adapt to these changes.
November 17, 2022 at 10:37 PM in reply to: ✅I want to extract serilazed data and update/insert values to metabox string meta #39193Peter
ModeratorHello,
Supporting compatibility with a third-party plugin and customization code is beyond our scope of support. You can create a customization service here https://metabox.io/contact/, I will forward it to our development team to help you with an extra fee.
Read more our support policy here https://support.metabox.io/topic/support-policy/
November 17, 2022 at 10:32 PM in reply to: ✅How can I translate the confirmation message for Remove? #39192Peter
ModeratorHello,
The text is wrapped in a gettext function __() that means it is translatable by using a translation plugin. You can find it in the file
/meta-box-group/group-field.phpline 63.Peter
ModeratorHello Yumikom,
Thank you for your feedback.
I see that issue. You can use this custom CSS code to fix the issue
.rwmb-group-title-wrapper:hover .rwmb-group-remove { flex-grow: unset; }In the admin area, you can use this plugin to implement the CSS code https://wordpress.org/plugins/admin-css-mu/
Peter
ModeratorHello John,
I do not experience that issue on my end, if you insert the image from the button "Add media" in the WYSIWYG field, you can switch to the tab Text and see the HTML tag
<img>added without<p>tag. -
AuthorPosts