Forum Replies Created
-
AuthorPosts
-
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
Peter
ModeratorHello,
Sorry, the attribute for the post type should be
post_type[mb_frontend_dashboard edit_page="30855" post_type="directory" object_type="post"]Following the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#user-dashboard
Peter
ModeratorHello Tanja,
Please add the attribute
post_typeto the frontend dashboard shortcode to show the CPT posts. For example:[mb_frontend_dashboard edit_page="124" post_type="cpt-slug-here"]Let me know how it goes.
March 18, 2025 at 9:22 PM in reply to: How to make the built-in "user_email" field in user information editable? #47851Peter
ModeratorHello,
You can add a custom field
user_emailto the field group362and show it in the user profile form. Please follow the documentation https://docs.metabox.io/extensions/mb-user-profile/#default-fieldsMarch 18, 2025 at 9:12 PM in reply to: "You attempted to edit an item that doesn't exist. Perhaps it was deleted?" #47850Peter
ModeratorHello,
Do you want Admin access to the testing WP install?Yes, sure. Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello Tanja,
You can use the filter hook
rwmb_frontend_welcome_messageto adjust the welcome message of the frontend dashboard. Here is an example:add_filter( 'rwmb_frontend_welcome_message', function( $message, $user, $query ) { $message = '<h3>' . esc_html( sprintf( __( 'Howdy, %s!', 'mb-frontend-submission' ), $user->display_name ) ) . '</h3>'; $message .= '<p>' . esc_html( sprintf( __( 'You have %1$d posts.', 'mb-frontend-submission' ), $query->post_count ) ) . '</p>'; return $message; }, 10, 3 );Refer to the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#dashboard
-
AuthorPosts