Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Becky,
Do you mean the sortable feature of the cloneable field? You can try to deactivate all plugins except Meta Box, MB extensions, switch to the standard theme of WordPress (Twenty TwentyTwo) and re-check this issue.
Long Nguyen
ModeratorHi,
Can you please create some more testing fields for the
teampost and save the field value? If the new ones do not save field values, you can try to follow this tutorial to increase the PHP settingmax_input_varsto fix the issue
https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/May 18, 2022 at 10:37 PM in reply to: ✅Dynamically Create Field Groups from Select Field Input #36074Long Nguyen
ModeratorHi,
It is beyond the scope of support of Meta Box. It's not possible to create meta boxes dynamically based on the field value. You can create all field groups and custom fields first then use the extension MB Conditional Logic to show/hide a field group based on a condition (field value)
Long Nguyen
ModeratorHi Macky,
You can use the plugin Code Snippets to implement the code without the file functions.php of the theme https://wordpress.org/plugins/code-snippets/
Long Nguyen
ModeratorHi,
You can use this code to set the width and height of the rendered video.
{% for item in post.link_video %} {{ mb.wp_video_shortcode( { src: item.src, width: item.dimensions.width, height: item.dimensions.height }) }} {% endfor %}or fixed width and height
{% for item in post.link_video %} {{ mb.wp_video_shortcode( { src: item.src, width: 300, height: 200 }) }} {% endfor %}Read more on the documentation https://docs.metabox.io/fields/video/#template-usage
Long Nguyen
ModeratorHi,
Due to some confusion when the users use it, the button Find Adress has been removed from the map field. I will inform the development team to consider bringing it back.
Long Nguyen
ModeratorHi,
Do you mean the extension MB Geolocation instead of field map? On the MB Geolocation documentation, we also recommend enabling 3 Google services
Google Maps API Geocoding API Places APILong Nguyen
ModeratorGreat.
Let me know if you have any questions.May 17, 2022 at 11:17 PM in reply to: ✅Geolocate for text field within group only showing US addresses #36061Long Nguyen
ModeratorHi Floris,
Can you please share a screen record of the issue on your site? I've tested with a Google Map subfield in a group but not seen that issue. Screen record https://monosnap.com/file/9lUaZ7ihFQtgUkYuOHkM683CWLeuQ9
May 17, 2022 at 12:56 PM in reply to: ✅Geolocate for text field within group only showing US addresses #36053Long Nguyen
ModeratorHi,
Thanks for your feedback.
I'm going to check this issue and get back to you later.
May 17, 2022 at 12:47 PM in reply to: ℹ️Post Meta Field Block inside Query Loop block in Gutenberg/FSE #36052Long Nguyen
ModeratorHi Brandon,
Yes, the variable
$post_idwhen you use therender_callbackorrender_templateis the current post/page ID (parent page), not the post ID in the custom query loop. But if you create a custom query loop, you can also pass the current post ID in the loop to the View shortcode as well with a few lines of code.
The main problem is you need to separate the variable name to use the post ID easily and avoid confusion.May 17, 2022 at 12:33 PM in reply to: ✅How to query for user profile fields of the author of the current post? #36051Long Nguyen
ModeratorHi,
Since
post.post_authorreturn the post author ID, you can pass it to the functionget_userdata(). Like this{% set user = mb.get_userdata( post.post_author ) %}Long Nguyen
ModeratorHi Becky,
Thank you for your feedback.
The frontend submission form does not bring all options of the editing post on the backend to the frontend. It only supports some required options to create/update a post, even the post status is not included as you can see.
If you are familiar with coding, there are some action/filter hooks that you can use to customize the form on your own. Please read more here https://docs.metabox.io/extensions/mb-frontend-submission/#form-actions
Regarding the ability to move fields between field groups, you can manually delete a custom field in a group and create a new one with the same field ID (and maybe settings) in another field group to move it manually.
Long Nguyen
ModeratorHi,
Thanks for your feedback.
Currently, we do not intend to support filter posts by other fields' values because there is a plugin that supports this case. Please find it here https://www.admincolumns.com/
We also have an integration with Admin Columns Pro https://metabox.io/plugins/meta-box-admin-columns-integrator/Long Nguyen
ModeratorHi Brent,
You can use the attribute
object_idand assign the post ID to it to get the field value of the post in the loop. For example:while ( $the_query->have_posts() ) { $the_query->the_post(); $post_id = get_the_ID(); echo do_shortcode('[rwmb_meta id="event_start_date_time" object_id='. $post_id .' format="l F j, Y"]'); }Read more on the documentation https://docs.metabox.io/shortcode/
-
AuthorPosts