Forum Replies Created
-
AuthorPosts
-
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.Peter
ModeratorHello Roderick,
You can check the
fieldvariableis not emptyto 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/
Peter
ModeratorHello Antal,
Can you please let me know what the monthly dividers look like? Does it display on the frontend only?
Peter
ModeratorHello,
Thanks to Tako, I'm able to produce the issue and escalate this to the development team. Hopefully, it will be fixed soon.
Peter
ModeratorIt's not possible to create a relationship between an object and a custom field of another object. The plugin MB Relationships helps you to create relationships between objects only (post, term, user). Please read more on the documentation https://docs.metabox.io/extensions/mb-relationships/
Peter
ModeratorHello Catherine,
There is a similar question that you can find the answer here https://support.metabox.io/topic/modify-meta-box-fields-after-post-has-been-parsed-initialized
Peter
ModeratorHello,
The plugin MB Custom Post Type helps you to register the custom post type with UI instead of using the WordPress function register_post_type().
So the question should be "is this possible with WordPress?"
Yes, it is possible. For example: You can set the argument'public' => falseand'exclude_from_search' => trueto remove frontend posts and exclude them from search.November 16, 2022 at 9:48 PM in reply to: How to Add Pagination on a reviews page with MB Testimonials? #39171Peter
ModeratorHello Bilal,
Currently, there is no option to add pagination to testimonials on a page. I will inform the development team to consider supporting this feature in future updates.
-
AuthorPosts