Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,736 through 3,750 (of 3,835 total)
  • Author
    Posts
  • 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.

    in reply to: IF statement to hide custom term image when empty #39189
    PeterPeter
    Moderator

    Hello Roderick,

    You can check the field variable is not empty to display the image. Here is an example

    {% if field is not empty %}
        <img src="{{ field.full.url }}" width="{{ field.full.width }}" height="{{ field.full.height }}" sizes="(max-width: 2500px) 100vw, 2500px" srcset="{{ field.medium.url }} 600w, {{ field.large.url }} 1675w, {{ field.full.url }} 2000w">
    {% endif %}

    Refer to this topic https://support.metabox.io/topic/display-header-conditionally/

    in reply to: Monthly dividers on CPT events #39188
    PeterPeter
    Moderator

    Hello Antal,

    Can you please let me know what the monthly dividers look like? Does it display on the frontend only?

    in reply to: Invalid Request. Please try again. #39185
    PeterPeter
    Moderator

    Hello,

    Thanks to Tako, I'm able to produce the issue and escalate this to the development team. Hopefully, it will be fixed soon.

Viewing 15 posts - 3,736 through 3,750 (of 3,835 total)