Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Yasmine,
you cannot add tabs within a group field type?Yes, correct. You can use the tab field as a top field. It doesn't work as a subfield in a group field.
Regarding the conditional logic issue, I already told you that the nested conditional logic doesn't work, in this topic https://support.metabox.io/topic/multiple-visibility-condition/?swcfpc=1
If you want to create a customization form with custom code, please contact us here https://metabox.io/contact/.
Peter
ModeratorHello Aaron,
Thanks for your feedback. Let me check the $attributes['name'] with the development team and I will get back to you later.
April 18, 2024 at 10:57 PM in reply to: ✅MB Frontend Submission with visitors (not logged-in user) #45257Peter
ModeratorHello,
does the visitors form can be used to change the post-id of another post to erase it?No. Only the author of the post can update their post in the frontend dashboard. Following the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#user-dashboard
If you don't want to show the frontend form for the visitors, you can create a custom code to check the logged-in user and output the frontend form with the shortcode.
April 18, 2024 at 10:43 PM in reply to: ✅Issue with Meta Box v5.9.6 (layout issue for conditional fields) #45256Peter
ModeratorHello,
Please update Meta Box AIO to the new version 1.26.2, Meta Box 5.9.7 and check the issue again.
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-items -
AuthorPosts