Forum Replies Created
-
AuthorPosts
-
March 27, 2023 at 9:16 PM in reply to: Type File and validation of MIME types: how does it work? #41231
Peter
ModeratorHello,
I also see it does not work on my demo site. I'm asking our development team to check the issue and get back to you later.
March 27, 2023 at 8:38 PM in reply to: How to move 4000+ custom posts in a new custom table? Please help #41229Peter
ModeratorHello,
>> So, what will be the code in my case?
You don't need to change the function name, just copy it to your theme or child theme folder. After migrating data, you can delete the code then.>> Do I need to write Parent Theme Name or Child Theme Name and how? Should I write WP_Astra or WP Astra while writing the theme name, if it’s parent theme?
You can add the code to the main theme or child theme, both of them are ok.>> The given code at https://metabox.io/move-custom-fields-data-to-custom-tables/ only provides the example for post_type ( companies ) but not for Taxonomies.
You can change the post type to your post type (tool). But for the taxonomy, the code will be different. Because it is beyond our scope of support to provide a custom code for your specific needs. You can contact us here to request a customization service https://metabox.io/contact/Peter
ModeratorHello,
MB Frontend Submission does not support displaying a multi-step form. You can try to create some custom JavaScript code to show/hide the part of form or tabs when clicking on the next/previous button.
March 27, 2023 at 8:20 PM in reply to: Why there's no function to get the fields out of a field group? #41227Peter
ModeratorHello,
Meta Box does not support a function to get all fields of a field group like that. You can use the function
get_post_meta()to get all post meta associated with a post. Please follow the documentation
https://developer.wordpress.org/reference/functions/get_post_meta/March 27, 2023 at 8:13 PM in reply to: Prefill Custom fields from other custom fields in a different CPT #41226Peter
ModeratorHello,
There is no option to prefill the field value from another field after selecting the Template CPT. You can try to use the action hook
rwmb_after_save_postto update the field value (post meta) after saving the post.Please follow the documentation https://docs.metabox.io/actions/rwmb-after-save-post/
March 27, 2023 at 8:05 PM in reply to: Beaver Builder image gallery connection to Metabox field #41225Peter
ModeratorHello,
The problem is resolved. The error happens when using the cloneable image_advanced field, it is not compatible with the current version of MB Beaver Themer Intergrator.
March 27, 2023 at 8:03 PM in reply to: ✅CPT, Custom Taxonomy with added image field: how do I get the image? #41224Peter
ModeratorHello,
Can you please print out the variable
$termsto see what value it is stored?Peter
ModeratorHello Jochen,
I do not understand your question clearly. WordPress does not support using Gutenberg editor to create the category or taxonomy item like in your screenshot. The field wysiwyg also does not support using Gutenberg editor in the field content.
Peter
ModeratorHello,
Please update the plugin MB Core to the latest version 1.8.0 to fix the issue. Let me know how it goes.
Peter
ModeratorHello there,
If you want to display multiple pins on a map, please follow the article below https://metabox.io/display-all-listings-on-a-map/?swcfpc=1
If you want to make the map field works with the Map Facet addon of WP Grid Builder, you will need to remove the third value (zoom) of the map field value. Please refer to this topic https://support.metabox.io/topic/how-to-remove-zoom-level-from-location-output/?swcfpc=1
and documentation https://docs.metabox.io/fields/map/#dataPeter
ModeratorHello there,
Does the relationship itself work with the frontend submission form on your site, without WS Form? If yes, you need to contact WS Form support to get further assistance, the integration is maintenance from WS Form side.
March 25, 2023 at 11:36 AM in reply to: Updates from REST aren't applied when using Custom Table #41208Peter
ModeratorHello,
Thanks for your feedback.
I can see that issue on my demo site and I've escalated it to the development team to check and fix the issue in the next update.
Peter
ModeratorHello,
Thanks for sharing the solution.
I will inform our development team to check this feature and consider adding it to the backlog development.
March 25, 2023 at 10:58 AM in reply to: ✅CPT, Custom Taxonomy with added image field: how do I get the image? #41206Peter
ModeratorHello,
If you use this code
get_queried_object_id()in the CPT template, it will return the current post ID, not the term ID. So you need to pass the term ID to the helper functionrwmb_meta().If the option
multipleis not set for the field, you can use the variable$termsto pass to the third parameter. For example:$terms = rwmb_meta( 'art_author' ); $images = rwmb_meta( 'tax_image', [ 'object_type' => 'term', 'size' => 'thumbnail' ], $terms );Please read more in the documentation https://docs.metabox.io/fields/taxonomy-advanced/#data
https://docs.metabox.io/extensions/mb-term-meta/#dataMarch 25, 2023 at 9:31 AM in reply to: MB custom fields and WP Gridbuilder data issue on filter facet #41205Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
and let me know where I can find the custom code added to your site to output the field value. I will take a look. -
AuthorPosts