Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Chris,
You need to create more custom code to display images in a popup or a slider. Meta Box does not have a ready-to-use plugin to do that. You can refer to this article https://metabox.io/configure-homepage-using-mb-views/
or use the solution MB Testimonials https://metabox.io/plugins/mb-testimonials/?swcfpc=1August 5, 2022 at 9:29 AM in reply to: ✅BUG: Exporting fields leaves out callback-function on checkbox-list #37360Long Nguyen
ModeratorHi,
Thanks for your feedback.
I've escalated this issue to the development team to fix it in the next update.
Long Nguyen
ModeratorHi,
No, the data of the subfield after moving into a group field will not display. You have to add the subfield values again to all posts. In the database, for the top field, the field ID is the meta key, for the group field, the meta key is the group ID, not the subfield ID.
Please read more on the documentation https://docs.metabox.io/field-settings/
https://docs.metabox.io/extensions/meta-box-group/Long Nguyen
ModeratorHi Jeremy,
I've tried to reproduce the issue on my demo site but did not see that. I have two field groups saved field value to one custom table. The field group is assigned to a CPT (job) and the frontend form display them on the frontend. Please check this screen record https://monosnap.com/file/seiz493QlKhv6JtQKgoc60MLPIdJYT
Long Nguyen
ModeratorHi,
It looks like you assign the default taxonomy
post_tagof WordPress to the CPTdevelopmentbut the Oxygen builder template does not support displaying multiple post types on the taxonomy archive page. You can try to contact Oxygen support to ask for help with this case.August 4, 2022 at 7:08 PM in reply to: Are sortable, cloneable groups with cloneable fields supported yet? #37346Long Nguyen
ModeratorHi,
You can just create different templates (MB Group skins) for different groups then add them to the Elementor page builder and sort the Elementor section easily. Our plugin helps the Elementor (Pro) to get the subfield values in a group or cloneable group.
Long Nguyen
ModeratorHi,
The custom model does not support this feature like the WordPress post. I will inform the development team to explore the possibility.
Long Nguyen
ModeratorHi,
Can you please share the code that creates the custom fields on your site? If you are using the custom table to save field values, please try to use the API
updateto update the field value. Read more on the documentation https://docs.metabox.io/extensions/mb-custom-table/#updateLong Nguyen
ModeratorHi,
I see there is a field type
multimaskwhich is not officially supported by Meta Box. You can try to remove that field from the json file and recheck this issue.Long Nguyen
ModeratorHi,
I've issued you a full refund. Let me know if you have any questions.
August 3, 2022 at 1:19 PM in reply to: Are sortable, cloneable groups with cloneable fields supported yet? #37331Long Nguyen
ModeratorHi Tim,
Sorry for the late reply. I've checked the sortable feature of the cloneable group to display in the Elementor page builder and not seen any issue with this. Here is the screen record https://imgur.com/bm0rgXZ
Regarding the cloneable field, you can sort fields in a group/clone only. It is not possible to sort (drag and drop) them between other groups/clones.
August 3, 2022 at 12:52 PM in reply to: ℹ️How to target a MeTABOX custom field attached to a Woo product #37330Long Nguyen
ModeratorHi,
The code works as well on my demo site, here is the screen record https://imgur.com/bGRYRQi
Long Nguyen
ModeratorHi Glen,
In the backend, WordPress supports a feature to notify a user to take over the post-editing of another user. Please read more on the documentation https://codex.wordpress.org/Post_Locking
Long Nguyen
ModeratorHi Marco,
It is beyond the scope support of Meta Box but it can be accomplished by using custom code. Or I think you can create a text field then update its value after creating a post with the post ID because the post ID is also autoincremented and unique.
Refer to this documentation https://docs.metabox.io/actions/#rwmb_after_save_post
Long Nguyen
ModeratorHi,
You can just create a nested loop inside the current loop to get and display the relation posts. Refer to this topic https://support.metabox.io/topic/query-in-relationship-post-per-page/#post-29149
{% for post in posts %} {{ post.title }} {% set args2 = { ... } %} {% set posts2 = mb.get_posts( args2 ) %} {% for post2 in posts2 %} {{ post2.title }} {% endfor %} {% endfor %} -
AuthorPosts