Skip to content

Instantly share code, notes, and snippets.

@gdarko
Last active January 14, 2025 17:07
Show Gist options
  • Save gdarko/0f1182820aacc18803789cacbdbe6642 to your computer and use it in GitHub Desktop.
Save gdarko/0f1182820aacc18803789cacbdbe6642 to your computer and use it in GitHub Desktop.
Replaces the Fluent Forms Pro name to just Forms
<?php
/**
* Replace the unnecessarily long "Fluent Forms Pro" menu item
* name in the Admin Dashboard menu with just "Forms"
*
* @author Darko G <[email protected]>
*
* Recommended install steps:
* -------------------------------
* 1. Download this file
* 2. Upload in wp-content/mu-plugins/ directory
*
*/
add_action( 'admin_menu', function() {
global $menu;
foreach($menu as &$item) {
if($item[0] === 'Fluent Forms Pro') {
$item[0] = 'Forms';
}
}
} , 999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment