Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,616 through 3,630 (of 3,718 total)
  • Author
    Posts
  • in reply to: Attach the uploaded media file to the post #39236
    PeterPeter
    Moderator

    Hello there,

    It looks like the field image_upload does 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-parent

    in reply to: Broken extension? #39234
    PeterPeter
    Moderator

    Hello 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_action or use this custom CSS code to hide it

    .mbfs-posts .mbfs-actions form {
        display: none;
    }

    2. You can set the post status to draft in 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?

    in reply to: Selected image in media modal #39230
    PeterPeter
    Moderator

    Hello 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/

    PeterPeter
    Moderator

    Hello Adrien,

    As I understand, you want to display terms in the selection of the taxonomy_advanced based on the selected term in the default custom taxonomy box of Meta Box. It is not possible with the field taxonomy_advanced.

    I think you can use the field select instead of the field taxonomy_advanced. You can create a custom PHP callback function that returns options for the select field 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/

    in reply to: How to change confirmation email? #39228
    PeterPeter
    Moderator

    Hello 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.

    in reply to: Custom fields - UI load and load and load #39227
    PeterPeter
    Moderator

    Hello 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.

    in reply to: Terms meta are not being deleted after deleting the term #39226
    PeterPeter
    Moderator

    Thanks 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.

    in reply to: WYSIWYG Auto P Tags #39211
    PeterPeter
    Moderator

    Hello 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.

    in reply to: Terms meta are not being deleted after deleting the term #39206
    PeterPeter
    Moderator

    Hello 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/#delete

    in reply to: update_post_meta for cloneable fields in a group. #39205
    PeterPeter
    Moderator

    Hello 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() or print_r() to see the value structure.

    in reply to: PHP notice with 'MB Term Meta' enabled and WP 6.1.1 #39204
    PeterPeter
    Moderator

    Hello 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.

    PeterPeter
    Moderator

    Hello,

    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/

    in reply to: How can I translate the confirmation message for Remove? #39192
    PeterPeter
    Moderator

    Hello,

    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.php line 63.

    in reply to: The 'Remove' element in the title bar is too long #39191
    PeterPeter
    Moderator

    Hello 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/

    in reply to: WYSIWYG Auto P Tags #39190
    PeterPeter
    Moderator

    Hello 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.

Viewing 15 posts - 3,616 through 3,630 (of 3,718 total)