Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
Please update Meta Box AIO to the new version 1.26.2 and check the issue again.
Peter
ModeratorHello,
There isn't a hook to move the Favorite Posts settings page to another menu. I use this code to remove the default settings page
add_action( 'admin_init', function() { remove_submenu_page( 'options-general.php', 'mb-favorite-posts' ); }, 999 );and this code to re-register the settings page
add_filter( 'mb_settings_pages', function( $settings_pages ) { $settings_pages[] = [ 'id' => 'mb-favorite-posts', 'option_name' => 'mb_favorite_posts', 'menu_title' => __( 'Favorite Posts', 'mb-favorite-posts' ), 'class' => 'mbfp-settings', 'style' => 'no-boxes', 'column' => 1, 'parent' => 'tools.php', // change parent menu here 'tabs' => [ 'mbfp_general' => 'General', 'mbfp_button' => 'Button', 'mbfp_icon' => 'Icon', ], ]; return $settings_pages; }, 99 );however, it doesn't work properly so I recommend using the default settings page.
Peter
ModeratorHello,
So the issue is in the frontend and related to Bricks builder, not Meta Box itself. I understand you can save the post with an empty URL field in the admin area. Please contact Bricks support to get further assistance.
Regarding the documentation, the URL field is an HTML5 input field and there isn't specific documentation for this. Please read more about HTML5 input fields here https://developer.mozilla.org/en-US/docs/Learn/Forms/HTML5_input_types
Peter
ModeratorHello,
Can you share a screen record of steps you do on the local site?
Peter
ModeratorHello,
It is located under the Settings menu, screenshot https://imgur.com/Jt2dzAB
April 16, 2024 at 9:53 PM in reply to: Google Maps Field does not Update its values from the Address Field. #45231Peter
ModeratorHello Kevin,
It's the wrong address field for the map and geolocation. You need to add one address field to the map field settings, and the address field ID has to begin with
address(like address or address_something).Please follow the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#address-field
April 16, 2024 at 9:35 PM in reply to: ✅Serialized array working locally, but not in Production #45230Peter
ModeratorHello Steve,
I've experienced a similar issue in the past. Please make sure the plugin MB Group is activated on the production site and has the latest version 1.3.19.
Peter
ModeratorHello,
Any field can be emptied when saving the post. Do you use any custom code to insert the current post URL into the custom URL field? And please let me know the field ID of those fields.
Peter
ModeratorHello,
Those fields can be located in another field group but they need to be available on the same page to make the conditional logic work.
Can you share the page where I can see the issue?
Peter
ModeratorHello,
It could be a permission issue. Please get in touch with your hosting support and ask them for more information about the error "curl error 23" when downloading a premium plugin from the URL https://packages.metabox.io/
Also, please share a screen record of the steps you do on your end.April 14, 2024 at 9:32 PM in reply to: How to order relationships in Bricks Builder query loops #45216Peter
ModeratorHello Keith,
The order of related posts in the frontend should reflect the order of related items in the admin area. Does it work like that on your end? Please try to use the code without the Bricks builder and let me know how it goes.
https://docs.metabox.io/extensions/mb-relationships/#getting-connected-itemsPeter
ModeratorHello Jai,
I check the composer feature on my local site but don't see that issue. Please double-check the key on your account and ensure it is correct.
Peter
ModeratorHello,
Sorry for the late reply. Can you please change the CPT slug to another one and check this issue again? You can also deactivate all plugins except Meta Box, MB extension plugins, switch to a standard theme of WordPress and see how it goes.
April 13, 2024 at 6:45 PM in reply to: Set default date of a date picker based on other date picker #45209Peter
ModeratorHello Stephen,
Meta Box doesn't support that option. But I think it is possible if you use some custom Javascript code. Please read more about this case on this topic https://stackoverflow.com/questions/29122275/set-end-date-after-select-start-date
April 13, 2024 at 6:42 PM in reply to: Showing a field of User Profile in default Add New User wordpress page #45208Peter
ModeratorHello,
Do you mean to show the custom field when creating a new user in the admin area? Currently, the field is only supported showing on the Profile page.
-
AuthorPosts