Skip to content

Commit

Permalink
Merge pull request #2851 from bainternet/fix_2843
Browse files Browse the repository at this point in the history
Moved My Library to top of admin menu closes #2843
  • Loading branch information
KingYes committed Dec 28, 2017
2 parents d811c74 + 4ad7136 commit b1adc70
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions includes/settings/settings.php
Expand Up @@ -69,6 +69,10 @@ public function admin_menu_change_name() {

if ( isset( $submenu['elementor'] ) ) {
$submenu['elementor'][0][0] = __( 'Settings', 'elementor' );
$tmp = $submenu['elementor'][0];
$submenu['elementor'][0] = $submenu['elementor'][1];
$submenu['elementor'][1] = $tmp;
unset( $tmp );
}
}

Expand Down

0 comments on commit b1adc70

Please sign in to comment.