Forum Replies Created
-
AuthorPosts
-
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-urlPeter
ModeratorHello,
Thank you for your feedback and for sharing the solution.
This issue has been escalated to the development team, we will work on this issue to fix it as soon as possible.
Let me know if you have any questions.
Peter
ModeratorHello,
I suggest you use the
lengthfilter of the Twig code to get the number of items in an array. Please follow the documentation https://twig.symfony.com/doc/3.x/filters/length.htmlMarch 20, 2025 at 10:53 PM in reply to: Show/Hide Field Group based on Taxonomy when Taxonomy is not in editor #47875Peter
ModeratorHello,
You can add the term ID to the conditional logic value. When editing the term, you can get the ID in the URL. Please check 2 screenshots here https://imgur.com/a/vsSJfZ5
Peter
ModeratorHello,
There is an issue with the field column setting. If I change it to 12, the issue is resolved, screenshot https://imgur.com/7pb1j2d
Can you please confirm this?
Peter
ModeratorHello Clint,
Can you please export the CPT "Confirmations" and field group assigned to the CPT to JSON files and share them with me?
I will import CPT and field group to my site and check the issue.Refer to the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
-
AuthorPosts