Forum Replies Created
-
AuthorPosts
-
November 9, 2022 at 9:22 PM in reply to: Profile pages using MB User Profile and MB Beaver Builder Integration #39028
Peter
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.November 7, 2022 at 10:57 PM in reply to: ✅Possible to template_lock MB Block and still allow other blocks to be added? #38989Peter
ModeratorThanks for sharing the info.
The attribute
lockdoes not look supported when registering the custom block. I will inform the development team to consider supporting this feature in future updates.November 7, 2022 at 10:50 PM in reply to: ✅error - MetaBoxFavoritePostsget_current_screen() - settings.php 11 #38988Peter
ModeratorHello,
Can you please reinstall this plugin and recheck the issue? And share the server info by going to admin area > Tools > Site Health > Info tab > Server.
November 7, 2022 at 10:40 PM in reply to: ✅Passing a variable value to a hidden field in Frontend Form Submission #38987Peter
ModeratorHello Denise,
When registering the meta box and custom fields, you can get the user name with your code and set the default value with the name. For example:
add_filter( 'rwmb_meta_boxes', function ( $meta_boxes ) { // your code to get the current user name here $user_name = 'Default user name'; $meta_boxes[] = [ ... 'fields' => [ [ 'name' => 'User Name', 'id' => 'user_name', 'type' => 'text', 'std' => $user_name ], ], ]; return $meta_boxes; } );Read more on the documentation https://docs.metabox.io/creating-fields-with-code/#field-settings
Peter
ModeratorHello there,
@Shemzone: can you please add the code to a template file of a theme and recheck the issue? I think there is a compatibility issue when executing the code in the Bricks builder.
@Dan: please create another topic and post your issue there. Make sure that you have the latest version of all extensions on your site. If you are using Google Map field, the issue mostly relates to the validity of your API key.
-
AuthorPosts