Hello bricks team,
It would be great if we could have control over the Form submissions menu in the WordPress dashboard. Currently, the Form submissions logo and name are ambiguous to those reviewing it.
Hello bricks team,
It would be great if we could have control over the Form submissions menu in the WordPress dashboard. Currently, the Form submissions logo and name are ambiguous to those reviewing it.
Hi @Victor1999,
something like this could work
. Let’s see how popular this request will get.
add_action( 'admin_menu', function () {
global $menu;
foreach ( $menu as $index => $item ) {
// $item[2] is the menu slug
if ( isset( $item[2] ) && $item[2] === 'bricks-form-submissions' ) {
// Change menu title
$menu[ $index ][0] = 'My Custom Submissions';
// Change page title (optional)
$menu[ $index ][3] = 'My Custom Submissions';
// Change icon (Dashicon, SVG, or base64)
$menu[ $index ][6] = 'dashicons-feedback';
break;
}
}
}, 999 );
Best regards,
Matej