Title: [Plugin: Sociable] Empty menu items under settings.
Last modified: August 20, 2016

---

# [Plugin: Sociable] Empty menu items under settings.

 *  [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-sociable-empty-menu-items-under-settings/)
 * There are some empty links under Settings in the admin created by this plugin.
   Three links are created and the title is empty for all three so it just creates
   empty items in the settings menu. These links are unnecessary and can easily 
   be done away with and replaced with the proper menu items.
    This is the code 
   that creates the empty links on line 987 of /wp-content/plugins/sociable/includes/
   class-sociable_Admin_Options.php
 *     ```
       $page[] =	add_options_page( "","", 'manage_options', 'sociable_select' , array( 'sociable_Admin_Options' , 'Select_Sociable_Page' ) );
   
       	$page[] =	add_options_page( "","", 'manage_options', 'sociable_options' , array( 'sociable_Admin_Options' , 'Create_Options_Page' ) );
   
       	$page[] =	add_options_page( "","", 'manage_options', 'skyscraper_options' , array( 'sociable_Admin_Options' , 'Create_Options_Page_Skycraper' ) );
       ```
   
 * A little farther down the actual menu items are created. Comment out the the 
   three lines referenced above and replace the menu_page function calls with the
   following starting on line 993.
 *     ```
       $page[] = add_menu_page(__( 'Sociable Options' ), __( 'Select Sociable Plugin' ), 'manage_options', 'Sociable_Options', array( 'sociable_Admin_Options' , 'Select_Sociable_Page' ) );
   
           // Add a submenu to the custom top-level menu:
   
           $page[] = add_submenu_page('Sociable_Options',  __( 'Sociable Options' ), __( 'Sociable Options' ), 'manage_options', 'Create_Options_Page' , array( 'sociable_Admin_Options' , 'Create_Options_Page' ) );
   
           // Add a second submenu to the custom top-level menu:
   
           $page[] = add_submenu_page('Sociable_Options',  __( 'Skyscraper Options' ), __( 'Skyscraper Options' ), 'manage_options', 'Create_Options_Page_Skycraper' , array( 'sociable_Admin_Options' , 'Create_Options_Page_Skycraper' ) );
       ```
   
 * [http://wordpress.org/extend/plugins/sociable/](http://wordpress.org/extend/plugins/sociable/)

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Thread Starter [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-sociable-empty-menu-items-under-settings/#post-2956275)
 * Just updated to the newest version of the plugin. Version 4.3.3.2. The empty 
   menu items still exist. For this version of the plugin the first line reference
   should now be 950 and the second line reference should be 955.
 *  [locomo](https://wordpress.org/support/users/locomo/)
 * (@locomo)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-sociable-empty-menu-items-under-settings/#post-2956276)
 * thanks for that Jeff!
 *  [LiftYourHood](https://wordpress.org/support/users/liftyourhood/)
 * (@liftyourhood)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-sociable-empty-menu-items-under-settings/#post-2956280)
 * I have this problem too.. can this be fixed in the next update release please?!?!
 *  Thread Starter [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * (@foomagoo)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/plugin-sociable-empty-menu-items-under-settings/#post-2956307)
 * This is still not fixed in the current version. Apparently they don’t care about
   their bad programming.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘[Plugin: Sociable] Empty menu items under settings.’ is closed to new
replies.

 * ![](https://s.w.org/plugins/geopattern-icon/sociable.svg)
 * [Sociable](https://wordpress.org/plugins/sociable/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/sociable/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/sociable/)
 * [Active Topics](https://wordpress.org/support/plugin/sociable/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/sociable/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/sociable/reviews/)

 * 4 replies
 * 3 participants
 * Last reply from: [Jeff Sterup](https://wordpress.org/support/users/foomagoo/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/plugin-sociable-empty-menu-items-under-settings/#post-2956307)
 * Status: not resolved