Forum Replies Created
-
AuthorPosts
-
November 10, 2022 at 7:49 AM in reply to: ✅Unable to view any information on user profile page #39041
Peter
ModeratorI got the issue. You need to assign the field group to the Users instead of Posts to make it works, screenshot https://monosnap.com/file/maXzxqqXyFAx7DNbF9JTuFEfXf1vns
Peter
ModeratorHello Macky,
The function wp_insert_post() requires inserting the post title and content to the post. It is the requirement of a WordPress function so there is nothing we can do with Meta Box.
If you want to update/create the field value of a post, please take a look at the function update_post_meta() and refer to this topic https://support.metabox.io/topic/error-while-inserting-field_id-in-rwmb_after_save_post/#post-37979
November 9, 2022 at 9:39 PM in reply to: Populate a WP GRIDBUILDER grid with Advanced Image field #39030Peter
ModeratorHello AnLip,
WP GridBuilder officially supports the integration with Meta Box to display the field value. Please check it here https://docs.metabox.io/compatibility/
So I recommend contacting WP GridBuilder support to ask for further assistance.November 9, 2022 at 9:35 PM in reply to: Getting Label of a Select field inside a cloneable Group #39029Peter
ModeratorHello,
I see you've created another topic with the same question https://support.metabox.io/topic/getting-label-of-select-field-on-a-group
Please use the helper function rwmb_get_field_settings() to get the field settings and use the for loop to get subfield settings.
November 9, 2022 at 9:22 PM in reply to: Profile pages using MB User Profile and MB Beaver Builder Integration #39028Peter
ModeratorHello Jan,
1. If you have the Lifetime Bundle license, you can use two plugins: Meta Box and Meta Box AIO to get all pro features. You can also manage the extensions in Meta Box > Extensions.
2. The builder Beaver Themer works with Meta Box to display the field value on the frontend. It does not help to display a profile form to update. You can add the user profile form shortcode to the Beaver Builder to display on the frontend.
Please read more here https://docs.metabox.io/extensions/mb-user-profile/#edit-profile-formPeter
ModeratorPlease change the class
RWMB_Map_Fieldto this oneRWMB_OSM_Field, it is a typo issue on the documentation and it will be fixed as soon as possible. The code should beecho RWMB_OSM_Field::render_map( $group_value['osm'], $args );Peter
ModeratorThanks for your feedback.
I will inform the development team to consider supporting this case in future updates.
November 8, 2022 at 10:29 PM in reply to: ✅Using a Open Street Map with an address text field inside a group #39011Peter
ModeratorHello Dan,
Please change the class
RWMB_Map_Fieldto this oneRWMB_OSM_Field, it is a typo issue on the documentation and it will be fixed as soon as possible. The code should beecho RWMB_OSM_Field::render_map( $group_value['osm'], $args );November 8, 2022 at 10:08 PM in reply to: ✅Unable to view any information on user profile page #39010Peter
ModeratorHello Katharine,
Can you please share your site credentials through the contact form https://metabox.io/contact/? I will help you to investigate the issue.
Peter
ModeratorOk, you can get the PHP code from the builder and share it here. I will check if there is something wrong with the group and subfield ID.
Regarding the third parameter that needs to pass to the helper function as the post (object ID). You can read more on this documentation https://docs.metabox.io/functions/rwmb-meta/
For example:
$group_values = rwmb_meta( 'group_contacts', '', 123 );Where 123 is the post ID.
November 8, 2022 at 9:48 PM in reply to: Critical error Meta Box AIO after updating to WordPress 6.1 #39007Peter
ModeratorHello NorCal,
Can you please let me know how to reproduce the issue? Do you use some features that load the Twig library like MB Views, MB Blocks (code area in the builder)? Or has the homepage been deleted recently?
Peter
ModeratorHello Aaron
Thanks for your suggestion.
Currently, MB Blocks does not support rendering a block without any user input, it is not meaningful. Instead of trying to create a block like that, I think you can create your own shortcode and add the shortcode to a Shortcode block. It would have the same purpose since you do not want to allow the customer to add something.Peter
ModeratorHello,
The relationship API is easy and clear to use but you need to have some knowledge of PHP and WordPress coding. If you want to do a customization job with an extra fee, you can contact our development team here https://metabox.io/contact/
And refer to some topics to know how to use the API
https://support.metabox.io/topic/autopopulating-relationships
https://support.metabox.io/topic/update-an-existing-or-create-new-relationship-based-upon-custom-field-value
https://support.metabox.io/topic/connecting-child-posts-to-a-parent-post-automatically/Peter
ModeratorIt could be a Javascript conflicting issue between Meta Box and that plugin, I'm not sure why it does not work but simply you can deactivate that plugin to make the image field works properly.
Peter
ModeratorHello there,
You can follow this topic https://support.metabox.io/topic/post-statuses-other-than-published
to use thequery_argsand show the posts withpost_statusargument. -
AuthorPosts