Meta Box
Support Forum
Support › MB Frontend Submission › Disable the Title link on Dashboard
Hi, how do I disable user to click on the "Title" link at MB Frontend Dashboard? Thank you.
Hello Will,
There is a filter hook rwmb_frontend_dashboard_post_title that supports modifying the post title in the frontend dashboard. Please read more about frontend dashboard filters in the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#dashboard
rwmb_frontend_dashboard_post_title
For example:
add_filter( 'rwmb_frontend_dashboard_post_title', function( $title ) { $title = '<span>' . get_the_title() . '</span>'; return $title; } );