Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorIf you are not an administrator user, you need to have the right capabilities to access the CPT of Meta Box to create field groups, post types, taxonomies, views ...
See this screenshot https://imgur.com/eMDtzdvJuly 25, 2023 at 9:33 PM in reply to: ✅Create a "settings" page that will list posts with a custom field that is true #42744Peter
ModeratorHello,
Yes, it is possible. You can create a custom query to list all posts based on the meta value and show them on the settings page. Read more about the custom query in this topic https://wordpress.stackexchange.com/questions/144078/get-posts-by-meta-value
Peter
ModeratorYou can go to Users > User Role Editor > Assign capabilities to the custom role. For example: manage_options, all capabilities in the Core section. For further information, please read more here
https://wordpress.org/documentation/article/roles-and-capabilities/Peter
ModeratorHello hdateam90,
Please check the map field value in the database if it has the format
lat,long,zoom. Refer to this topic https://support.metabox.io/topic/bricks-metabox-and-wpgridbuilder-locator-site/Peter
ModeratorHello,
Do you mean to add a field to an existing field group? If yes, please try to increase the PHP setting
max_input_varsand see if it helps. Read more about the PHP setting in the documentation https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Peter
ModeratorHello,
You can use a third-party plugin like User Role Editor to add capabilities to the developer role to access Meta Box pages (post types).
https://wordpress.org/plugins/user-role-editor/Peter
ModeratorHello,
If you want to output the selected choices, please follow the documentation https://docs.metabox.io/fields/select/#template-usage
If you want to output all supported choices, please use the function
rwmb_get_field_settings(). Refer to the documentation https://docs.metabox.io/functions/rwmb-get-field-settings/Peter
ModeratorHello,
The
regionoption is optional, not required. So if you want to populate all regions, please don't set it up.Peter
ModeratorHello Kevin,
Thanks for your feedback.
Currently, we do not support adding a custom control type because it is related to the processing field settings. If the client lacks coding knowledge, you can suggest they use the WYSIWYG field to output HTML value in the front end.
July 22, 2023 at 10:56 AM in reply to: Field values not loading for specific Field group on posts #42718Peter
ModeratorHello,
Please check the option "Save field value" if it is disabled. If yes, please enable it and recheck this issue. See this screenshot https://monosnap.com/file/boUvSTyR4Kmm5Ls0wmDiELKehY7Lkb
July 22, 2023 at 9:20 AM in reply to: ✅Post field: how to search items by a specific custom field and not by title? #42717Peter
ModeratorHello,
Before, the
postfield supported searching by title or content (keywords) as WordPress does and returns the post title. But it was confusing for users when they cannot find their posts if there are many posts. Then we only support searching the post by title.If you are familiar with coding, please try to use the filter hook
rwmb_ajax_get_postsand take a look at the file wp-content/plugins/meta-box/inc/fields/post.php line 34.I hope that helps.
July 22, 2023 at 8:48 AM in reply to: Relationship setup (following schema.org and Google rich snippets) #42716Peter
ModeratorHello,
Follow the GenerateBlocks Query Loop documenation, you can use the filter hook
generateblocks_query_loop_argsto add a custom argument to display the related posts. For example:add_filter( 'generateblocks_query_loop_args', function( $query_args, $attributes ) { // apply filter if loop has class: metabox-related-posts if (! is_admin() && ! empty( $attributes['className'] ) && strpos( $attributes['className'], 'metabox-related-posts' ) !== false) { $query_args = array_merge( $query_args, array( 'relationship' => [ 'id' => 'posts_to_pages', 'from' => get_the_ID(), // You can pass object ID or full object ], )); } return $query_args; }, 10, 2 );I recommend contacting GenerateBlocks support for further assistance. And read more about query in the documentation
https://docs.metabox.io/extensions/mb-relationships/#getting-connected-items
https://docs.generateblocks.com/article/order-query-loop-by-custom-field/Peter
ModeratorHello,
Currently, it isn't possible. MB Favorite Posts plugin does not support an option to bookmark a category or allow users to define their own categories like that.
I will forward this topic to the development team to consider implementing a feature to support this. Thanks.
Peter
ModeratorHello Sven,
Please make sure you have the latest version of Meta Box AIO 1.21.4 or MB Elementor Integrator 2.1.10 then check this issue again.
July 20, 2023 at 10:54 PM in reply to: [REQUEST] Need a MB developer for frontend customization for Gutenberg #42702Peter
ModeratorHello,
You can hire an expert developer here https://www.codeable.io/ or contact us here https://metabox.io/contact/
our development team will help you with their best. -
AuthorPosts