Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Fede,
I've created a note for this case on this reply https://support.metabox.io/topic/remote-validation-example/#post-22957
Note: validation remote does not work with Block Editor, please use the Classic Editor to use the custom validation.September 8, 2021 at 9:43 AM in reply to: ✅Private Hidden Admin Note for User meta - only Admin, Manager can see per User #30661Long Nguyen
ModeratorHi,
It looks like the same question here https://support.metabox.io/topic/can-i-create-custom-field-for-user-meta-in-wp-admin-and-add-php-code-generated
You can find the answer there.September 8, 2021 at 9:42 AM in reply to: ✅Can i create Custom field for User meta in wp-admin and add php code generated ? #30660Long Nguyen
ModeratorHi,
Yes, it is possible. Please follow this documentation to get more details https://docs.metabox.io/extensions/meta-box-builder/#getting-php-code
September 8, 2021 at 9:40 AM in reply to: What to do with old fields after running extension ACT to Metabox migration? #30659Long Nguyen
ModeratorHi,
WordPress itself does not support an option to delete old post meta. If you are familiar with SQL skills, you can follow the ACF guide to know how to delete the old custom fields
https://support.advancedcustomfields.com/forums/topic/removing-data-from-wp-db-after-deleting-a-field-group/FYI, ACF custom fields will have meta key underscore_fieldID like this: _textfield
Long Nguyen
ModeratorHi Wayleong,
The admin columns do not work with the subfields in a group, only work with the top field.
Long Nguyen
ModeratorHi,
There is no option to force selecting the child term or parent term only. You can try to create a custom field type to show the child term only. Please refer to this solution https://support.metabox.io/topic/taxonomy-advanced-set-starting-node-of-categories-with-query_args/
Long Nguyen
ModeratorHi,
Meta Box has not had a calculation field yet. If you are familiar with coding, you can follow this topic to do the same function with some JavaScript code https://support.metabox.io/topic/calculation-in-fields-success-error-messages-jquery-version/.
Long Nguyen
ModeratorHi,
The integration is created by the Oxygen development team so we can hope that they will address all Meta Box's functions and extensions in a short time. I will also inform our development team to check if there is any possibility we can do it from our end.
Thanks for your patience.
Long Nguyen
ModeratorHi,
Yes, of course. Meta Box is compatible with WordPress 5.8. If you got an issue on your site when running Meta Box, please follow the step Debugging Information here to troubleshoot this issue.
https://support.metabox.io/topic/how-to-create-a-new-topic/September 7, 2021 at 11:11 AM in reply to: ✅MB Custom Table 2.0.0-rc.1 - Fatal Error in mb-custom-table.php #30643Long Nguyen
ModeratorHi,
The official version of MB Custom Table 2.0.0 has been released. Please update it to fix the issue.
Long Nguyen
ModeratorHi,
We are talking about the feature Admin Columns of the custom field, so you need to create a
taxonomyfield and enable the admin column for this field. Screenshot https://imgur.com/dmevfklLong Nguyen
ModeratorHi Fede,
The remote value in the Builder should be the full site URL.
https://your-site.com/wp-admin/admin-ajax.php?action=check_descripcionSeptember 6, 2021 at 10:12 PM in reply to: ✅Private Hidden Admin Note for User meta - only Admin, Manager can see per User #30637Long Nguyen
ModeratorHi,
Here is the sample code:
function your_prefix_function_name( $meta_boxes ) { $meta_boxes[] = [ 'title' => __( 'User Meta', 'your-text-domain' ), 'id' => 'user-meta', 'type' => 'user', 'include' => [ 'relation' => 'OR', 'user_role' => ['editor'], ], 'fields' => [ ... ], ]; return $meta_boxes; }FYI, you can use the Builder to set the role as well, option Advanced Location Rules. Please read more on the documentation https://docs.metabox.io/extensions/meta-box-builder/#field-group-settings
September 6, 2021 at 9:56 PM in reply to: Maximum amount for multiple select for the "taxonomy advanced"-field #30636Long Nguyen
ModeratorHi Andreas,
You can allow the user to select one category per input box. Then enable the
cloneablesetting and set themax_clonesetting to 3. Here is the sample code:[ 'name' => __( 'Taxonomy', 'your-text-domain' ), 'id' => $prefix . 'taxonomy_rbgrdv9a23p', 'type' => 'taxonomy_advanced', 'taxonomy' => ['category'], 'field_type' => 'select_advanced', 'clone' => true, 'max_clone' => 3, ],Read more on this documentation https://docs.metabox.io/cloning-fields/
Long Nguyen
ModeratorHi,
This issue has been fixed, refer to this topic https://support.metabox.io/topic/problem-with-the-select-field/
You should use only numbers, letters, and underscores for the value and use any characters for the label.
-
AuthorPosts