Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Tom,
If you use the WYSIWYG field as a subfield in a group field, the value will be saved without
<p>tag. If you want to render the<p>tag, you should use the PHP codewpautop()to wrap the field value.It is noted in the documentation https://docs.metabox.io/extensions/meta-box-group/#sub-field-values
https://docs.metabox.io/fields/wysiwyg/#template-usageMarch 25, 2025 at 9:41 PM in reply to: โ How to create a View to show an Open Street Map containing all markers #47913Peter
ModeratorHello Jon,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
and let me know steps that you do you on your site, where I can see that. I will take a look.Peter
ModeratorHello Peter,
Can you please export the field group to a JSON file and share it here? I will help you check the issue with tab and custom fields.
March 24, 2025 at 9:47 PM in reply to: โ How to create a View to show an Open Street Map containing all markers #47907Peter
ModeratorHello Jon,
There is a section in the tutorial that helps you use Views to show all markers on a map
https://docs.metabox.io/tutorials/display-listings-on-map/#32-method-2-using-mb-viewsif you want to use the PHP code, you can create a shortcode and wrap the PHP code inside the shortcode. Then you can add the shortcode to many places on your site. Please follow the documentation
https://docs.metabox.io/tutorials/display-listings-on-map/#32-method-2-using-mb-viewsPeter
ModeratorHello,
You can still use the filter hook
rwmb_frontend_dashboard_query_argsto adjust the dashboard, here is an example:add_filter( 'rwmb_frontend_dashboard_query_args', function( $args ) { $user_id = get_current_user_id(); if( $user_id == 1 ) { $args['posts_per_page'] = 30; // show 30 posts based on user ID } $args['order'] = 'DESC'; return $args; } );Peter
ModeratorHello,
There isn't an option to add the pagination to the dashboard. If you want to limit the number of posts on the dashboard, you can use the filter hook
rwmb_frontend_dashboard_query_argsto modify the query argumentposts_per_page. For example:add_filter( 'rwmb_frontend_dashboard_query_args', function( $args ) { $args['posts_per_page'] = 15; // show 15 posts return $args; } );Following the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#dashboard
Peter
ModeratorHello,
I can reproduce the issue on my demo site with your code. I've escalated this to the development team so they can fix it in the next update of MB Views.
Thank you.
Peter
ModeratorHello,
Can I include two different CPTs, though?No, it shouldn't be. You should add one post type to a frontend form per page and have one dashboard/edit page per post type.
Peter
ModeratorHello,
Can you please share the shortcode you use to show the frontend form? If use a builder like Bricks or Elementor, please share some screenshots of the widget settings. I will help you check the issue there.
March 22, 2025 at 8:33 AM in reply to: The loading of the WYISWG editor fields are still really really slow #47893Peter
ModeratorHello,
Yes, you can share the JSON file privately by submitting this contact form https://metabox.io/contact/
I will take a look.
Thank you.
Peter
ModeratorHello Dennis,
Thanks for the feedback.
It would be better if we could understand exactly what data is used in this case. Can you please share the code in the View editor? Or let me know how to reproduce the issue with clear steps.
Peter
ModeratorHello,
It would be great if you could solve this problem or somehow make it possible to have more options for making the layout look better ๐Thanks for the feedback. I will forward this case to the technical team to improve the display of columns for future development.
it would be cool if the clones could be displayed next to each other like in a grid, rather than one below the other.I think that is expected because the column 6 is set for the group field, so all cloneable entries are display under each other. The column 6 on the right will be displayed for another field in the same tab.
March 20, 2025 at 11:52 PM in reply to: โ Frontend Submission Extension is not showing up in Admin Menu #47880Peter
ModeratorHello,
Frontend Submission extension plugin works quite simply and doesn't have a settings page to setup. It supports shortcodes and Gutenberg blocks, you can add them to the page content to show the form and dashboard in the frontend.
Please read more about this plugin in the documentation https://docs.metabox.io/extensions/mb-frontend-submission/
Peter
ModeratorHello,
To compare the value, please use the operator
=={% if user.member_level.value == doctor %}You can read more about Twig operators in the documentation https://www.branchcms.com/learn/docs/developer/twig/operators
March 20, 2025 at 11:34 PM in reply to: Is possible to remove the CPT path in in the permalink? #47878Peter
ModeratorHello Aryan,
Meta Box does not support removing the CPT slug from the URL. You can use the code to remove post type slug from the permalink. Please follow these topics for more information
https://wordpress.org/support/topic/removing-slug-in-url-from-custom-post-type/
https://stackoverflow.com/questions/41230665/how-to-remove-taxonomy-slug-from-custom-post-type-url -
AuthorPosts