Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Martin,
I do not see any issue when setting capabilities for a user role to edit user meta of other users with User Role Editor. Screen record https://share.getcloudapp.com/Qwu26mgB
If it does not work with the Member plugin, you can contact the plugin support to ask for help with this issue.
October 13, 2021 at 10:06 PM in reply to: ✅Select Advanced field not showing as an Admin Column #31301Long Nguyen
ModeratorHi,
If you use the Builder to create the field, please add the column name to the Column Position box. Screenshot https://imgur.com/PD4TBbm
Note: the admin column does not show the sub-field value in a group.
Long Nguyen
ModeratorHi,
Thank you for your reporting.
I've informed the development team to update the version in the next release.
October 13, 2021 at 9:44 PM in reply to: ✅Basic question about taxonomies vs CPT relationships #31298Long Nguyen
ModeratorHi John,
The taxonomy and term meta are not supported to create or edit on the frontend. You can try to use the extension MB Relationships so you can create posts on the frontend and select the relation posts as well.
Long Nguyen
ModeratorHi Matt,
Thanks for the feedback.
MB Blocks doesn't support Block Variations and Block Styles like that but I think, with the large field types of Meta Box, you can create your different block styles with select fields as well.
October 13, 2021 at 10:59 AM in reply to: ✅Select Advanced field not showing as an Admin Column #31285Long Nguyen
ModeratorHi Martin,
The field
select_advancedworks as well with the extension MB Admin Columns. I also do not see that on my demo site. Can you please share the code that creates the fields?For example, this sample field shows the value in the admin column
function your_prefix_function_name( $meta_boxes ) { $meta_boxes[] = [ 'title' => __( 'Post Meta', 'your-text-domain' ), 'id' => 'post-meta', 'fields' => [ [ 'name' => __( 'Select Advanced', 'your-text-domain' ), 'id' => $prefix . 'select_advanced', 'type' => 'select_advanced', 'options' => [ 'a' => __( 'A', 'your-text-domain' ), 'b' => __( 'B', 'your-text-domain' ), 'c' => __( 'C', 'your-text-domain' ), ], 'multiple' => true, 'admin_columns' => 'after title', ], ], ]; return $meta_boxes; }Long Nguyen
ModeratorHi Martin,
Please try to use the plugin User Role Editor to set the capabilities for the new role and change the value again.
https://wordpress.org/plugins/user-role-editor/October 13, 2021 at 10:33 AM in reply to: ✅Basic question about taxonomies vs CPT relationships #31282Long Nguyen
ModeratorHi,
Use the publication as a taxonomy is a good way for your case. WordPress supports more functions to get the taxonomy and is easier than using a relationship.
To add extra fields to the taxonomy, you can use the extension MB Term Meta
https://docs.metabox.io/extensions/mb-term-meta/October 13, 2021 at 10:28 AM in reply to: Are Metabox AIO and MB Views compatible with WPML 4.5? #31281Long Nguyen
ModeratorHi friends,
Each menu under the Meta Box menu on the dashboard is a post type (MB Views, Field Groups, Settings page ...) and they could be translated with WPML as well.
https://wpml.org/plugin/meta-box/Long Nguyen
ModeratorHi,
Please refer to this tutorial to change the display another date format https://docs.metabox.io/using-two-date-formats/
Let me know how it goes.
Long Nguyen
ModeratorHi,
The extension MB Blocks only supports rendering the block after typing something to the custom field. I will inform the development team to consider supporting this case in future updates.
Long Nguyen
ModeratorHi,
With the Builder, you can assign a field group (meta box) to more settings pages to re-use the field group. Like this https://share.getcloudapp.com/6quv9bwO
Using code:
add_filter( 'rwmb_meta_boxes', 'your_prefix_function_name' ); function your_prefix_function_name( $meta_boxes ) { $meta_boxes[] = [ 'title' => __( 'Field Settings page', 'your-text-domain' ), 'id' => 'field-settings-page', 'settings_pages' => ['my-custom-settings', 'my-settings-2'], 'fields' => [ ... ], ]; return $meta_boxes; }Please read more on the documentation https://docs.metabox.io/extensions/mb-settings-page/#creating-settings-fields
Long Nguyen
ModeratorHi,
Thanks for your feedback.
I've escalated this issue to the development team. It will be fixed in the next update.
October 11, 2021 at 6:58 PM in reply to: ✅Single Image custom field is not showing in frontend #31257Long Nguyen
ModeratorHi,
Here is the demo screen record https://share.getcloudapp.com/04u59mqz
Function to get image URL:
function get_single_image_url() { $image = rwmb_meta( 'single_image', array( 'size' => 'large' ) ); return $image['url']; }Use the function with Code Snippets because Oxygen will prevent theme files loaded.
October 11, 2021 at 10:07 AM in reply to: ✅Single Image custom field is not showing in frontend #31252Long Nguyen
ModeratorHi Gibber,
Oxygen version 3.9 Alpha or Beta does not look works with the image fields. You can try to report them to fix it in the next update.
For now, please follow this topic to create a function that returns the image URL as the data type of the Oxygen Image component.
https://support.metabox.io/topic/getting-field-values-from-settings-page/
https://docs.metabox.io/fields/single-image/#template-usage -
AuthorPosts