Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
You can use the function is_admin() to check if it is the admin area and remove the query args. For example:
add_filter( 'rwmb_normalize_kind_of_stuff_field', function( $field ) { if( is_admin() ) { $field['query_args'] => []; } return $field; });Peter
ModeratorHello,
In the 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/Peter
ModeratorHello,
Thanks for your feedback.
Currently, it's not possible to save each subfield value (in a group) to a separate column in the custom table. It will be saved to one column which is the
groupfield ID.For the cloneable field, if you do not add the max clones, the cloneable is unlimited. Please check this screenshot https://imgur.com/8sgrjvs
Peter
ModeratorHello,
As noted in the documentation https://docs.metabox.io/fields/range/
it's the HTML5 range field. You can see more here https://www.w3schools.com/howto/howto_js_rangeslider.aspIf you want to create a custom range slider field type, please follow the documentation https://docs.metabox.io/creating-new-field-types/
Peter
ModeratorHello,
The default value is still saved to the database on my demo site. Just the issue is, the default value does not display the selected time in the picker.
Peter
ModeratorHello,
In this case, I recommend contacting Bricks support to ask for getting the user ID in the loop/user query.
July 19, 2023 at 6:30 PM in reply to: What is better - tooltip or label description for frontend? #42657Peter
ModeratorHello,
MB Frontend Submission does not support working Gutenberg blocks on the frontend. You can edit blocks in the admin area only.
And the tooltip will display next to the field label, not the label description.Peter
ModeratorHello,
It's already noted in the documentation https://docs.metabox.io/installation/#installing-extensions
Before installing extensions, make sure you installed and activated Meta Box, even if you use Meta Box AIO, MB Core, or solutions.I will also inform the development team to add a note on the My Account page also. Thanks.
Peter
ModeratorHello,
You can add the default value for the range field to display the numeric value if you want, screenshot https://imgur.com/3LCR4aO
July 19, 2023 at 6:09 PM in reply to: CustomTaxonomy - does not save number of records to display #42654Peter
ModeratorHello,
You can try to deactivate all plugins except Meta Box, MB extension plugins and switch to a standard theme of WordPress and recheck this issue.
Also, please try to register the custom taxonomy with code and see how it goes. Refer to the documentation https://docs.metabox.io/extensions/mb-custom-post-type/#getting-php-code-1Peter
ModeratorHello,
Because the function
get_current_user_id()returned the current logged-in user (you are) so you will see that issue. You need to replace that function with the user ID in the context or in the loop to display the user meta.Peter
ModeratorHello,
The custom model does not work with the
postfield to display a dropdown field to choose a model and save its ID. You will need to use theselectfield and create a custom function to generate options with a list of models.
Please read more about the pros and cons of the custom model in the documentation https://docs.metabox.io/extensions/mb-custom-table/#custom-modelsPeter
ModeratorHello,
It's the cloneable field and custom table, it is possible to have two cases like that. You can read more in the documentation
https://docs.metabox.io/cloning-fields/
https://docs.metabox.io/extensions/mb-custom-table/Peter
ModeratorHello,
Currently, we do not support creating a custom model with UI. You need to use the code to create a custom model by following the documentation https://docs.metabox.io/extensions/mb-custom-table/#custom-models
July 18, 2023 at 5:17 PM in reply to: How-to? Single relationship with 3 metaboxes for 3 sets of query vars #42625Peter
ModeratorHello,
So I understand you want to display the admin column for each
service-typeterm when aserviceis related to atherapistin the post list table of the CPTtherapist.
It's not possible with the current settings of MB Admin Columns and MB Relationships. You can try to create a custom admin column by following the documentation https://docs.metabox.io/extensions/mb-admin-columns/#custom-admin-columns -
AuthorPosts