Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
Thanks for sharing the info. I'm able to reproduce the issue on my demo site and I've escalated this issue to the development team to fix it in the next update. Meanwhile, you can add the shortcode to display the image first and the shortcode to display the map after. Screenshot https://monosnap.com/file/8JJpmHDaqk7viAFyIurbJKPqtVLDp8
Long Nguyen
ModeratorHi,
If you want to output the term name only with code, please follow the documentation https://docs.metabox.io/fields/taxonomy/#template-usage
In case of using Bricks, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/Long Nguyen
ModeratorHi,
Meta Box does not support adding the field ID variable to the post title like that. If you are familiar with coding, please follow this topic to know how to update the post title from the field value https://support.metabox.io/topic/adding-metabox-field-data-to-the-post-title
Let me know how it goes.
Long Nguyen
ModeratorHi,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a closer look.Long Nguyen
ModeratorHi,
We do not have any plan to modify a block from other sources to add custom fields. It's very complicated when you also have to change the outputting field value of those blocks.
Long Nguyen
ModeratorHi,
It's just an attribute of the Meow gallery shortcode, you can change it to anything that you want. For example
add_filter( 'shortcode_atts_gallery', function( $result, $defaults, $atts ) { if ( !empty( $atts['my_meta_box'] ) ) { ... } return $result; }, 10, 3 );shortcode:
[meow-gallery my_meta_box="my_meta_box_gallery_field"]But I'm not sure if this plugin can work with Meta Box. You should contact the plugin support to ask for more information.
Long Nguyen
ModeratorThanks for sharing your solution.
October 10, 2022 at 9:26 AM in reply to: Outputting a different user meta photo from field group #38609Long Nguyen
ModeratorHi Yasmine,
The order of arguments passed to the helper function
rwmb_get_value()is not correct. Please follow the formatrwmb_get_value( $field_id, $args, $object_id )It should be
rwmb_get_value( 'academicadd_co_author', '', $post->ID )Read more on the documentation https://docs.metabox.io/functions/rwmb-get-value/
Long Nguyen
ModeratorHi,
I do not see that issue on my demo site, here is a screen record https://monosnap.com/file/PBiqcNxALbX1XKrZktWg5bZ5tSqoHD
Can you please share the code that creates the custom fields and View code that outputs the field value on your site?
Long Nguyen
ModeratorHi,
The extension MB Blocks only supports adding custom fields to the existing blocks that are created by itself, does not support adding fields to blocks of other plugins or WordPress.
October 8, 2022 at 8:59 PM in reply to: link not working - How to Create a Product Page - P3 - Using Meta Box + Bricks #38597Long Nguyen
ModeratorHi.
1. In case of using Bricks Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/2. It's the
contextsetting, and the contextafter_titledoes not work with Gutenberg (block) editor. Please read more on this documentation https://docs.metabox.io/creating-fields-with-code/#contextsOctober 8, 2022 at 8:54 PM in reply to: ✅Change Title to Custom field using "rwmb__before_save_post" action. #38596Long Nguyen
ModeratorHi Scott,
Yes, correctly. Using the argument
post_nameto update the post slug. Read more on the documentation https://developer.wordpress.org/reference/classes/wp_post/Long Nguyen
ModeratorHi,
You can set the relationships between objects posts, users, terms but not the custom fields to other ones or objects. And the user can set the connections but not see the custom fields associated with an object.
Read more on the documentation https://docs.metabox.io/extensions/mb-relationships/October 8, 2022 at 6:08 PM in reply to: ✅Multiple type of relationships between the same objects #38594Long Nguyen
ModeratorHi Henri,
Yes, you can create many relationships between two objects as you want, just set the different relationship IDs.
Long Nguyen
ModeratorHi Michael,
Thanks for your additional information.
Ok, so in this case, you can use the extension MB Relationships to create a relationship between the page and FAQ post type. When editing the page you can set the connection from a page to many FAQs as you want.
Here is an example that is similar to this case https://metabox.io/mb-views-how-to-display-relationships/
-
AuthorPosts