Found Image Menu Social Icons | Plugin Review Network Skip to Content

Plugin Review Network

Plugin Review Network

an eye on the best wordpress plugins
Show Sidebar Hide Sidebar
[+] Sidebar [-] Sidebar
Plugin:
Rated:
94%
4.7 Stars (36 votes)

WP.Org

ReadMe

Support
  • Author:
    Paul Clark
Version: 1.3.10
Requires: WP 3.4
Last Updated:4037 days ago
Downloads:165177
Installations: 30,000+
Tags:
    easy, fontawesome, icons, menus, social, social media
Download Plugin Package

Menu Social Icons

Released on June 8, 2013.
Download Plugin Package

Version: 1.3.10

Add social icons to your WordPress menu items automatically.

  • Description
  • FAQ
  • Changelog
  • Installation


This plugin changes social website links in any of your WordPress menus to use icons from FontAwesome.

No configuration is necessary, other having links to your social media profiles in the built-in WordPress menus. Add links to any of these social sites under Appearance > Menus, then enable the plugin.

http://www.youtube.com/watch?v=AS3hLeyV4S0

Supported Sites

bitbucket.org           dribbble.com         dropbox.com
facebook.com            flickr.com           foursquare.com
github.com              gittip.com           instagram.com
linkedin.com            mailto:(email)       pinterest.com
plus.google.com         renren.com           *slideshare.net
stackoverflow.com       *stackexchange.com   trello.com
tumblr.com              twitter.com          *vimeo.com
vk.com                  weibo.com            xing.com
youtube.com

* Requires storm_social_icons_use_latest be turned on. (See below.)

Changing Icon Appearance

If you want to edit the appearance of the icons in ways that the options below don't provide, you can do more with custom CSS to match your theme. This video walks through the process:

http://youtube.com/watch?v=hA2rjDwmvms

Option: Add Vimeo and Stack Exchange

To use FontAwesome 4.0+, which drops support for IE7, but adds vimeo.com and stackexchange.com, add this to your theme's functions.php file: add_filter( 'storm_social_icons_use_latest', '__return_true' );

Option: Show Text

To show menu item text in addition to the icons, add this to your theme's functions.php file: add_filter( 'storm_social_icons_hide_text', '__return_false' );

Option: Alternate Icons

To show an alternative icon style, where logos are cut out of signs, , add this to your theme's functions.php file: add_filter( 'storm_social_icons_type', create_function( '', 'return "icon-sign";' ) );

Option: Icon Sizes

To vary icon sizes, add this to your theme's functions.php file: (Default is 2x)

add_filter( 'storm_social_icons_size', create_function( '', 'return "normal";' ) );
add_filter( 'storm_social_icons_size', create_function( '', 'return "large";' ) );
add_filter( 'storm_social_icons_size', create_function( '', 'return "2x";' ) );
add_filter( 'storm_social_icons_size', create_function( '', 'return "3x";' ) );
add_filter( 'storm_social_icons_size', create_function( '', 'return "4x";' ) );

Option: Add More Icons

Add icons from FontAwesome for other URLs. For example, an RSS feed:

add_filter( 'storm_social_icons_networks', 'storm_social_icons_networks');
function storm_social_icons_networks( $networks ) {

    $extra_icons = array (
        '/feed' => array(                  // Enable this icon for any URL containing this text
            'name' => 'RSS',               // Default menu item label
            'class' => 'rss',              // Custom class
            'icon' => 'icon-rss',          // FontAwesome class
            'icon-sign' => 'icon-rss-sign' // May not be available. Check FontAwesome.
        ),
    );

    $extra_icons = array_merge( $networks, $extra_icons );
    return $extra_icons;

}

Option: Change HTML Output

This is useful for developers using the plugin with custom icon sets.

Edit icon HTML output:

add_filter( 'storm_social_icons_icon_html', 'storm_social_icons_icon_html', 10, 4 );

function storm_social_icons_icon_html( $html, $size, $icon, $show_text ) {
    $html = "<i class='$size $icon $show_text'></i>";
    return $html;
}

Edit title HTML output:

add_filter( 'storm_social_icons_title_html', 'storm_social_icons_title_html', 10, 2 );

function storm_social_icons_title_html( $html, $title ){
    $html = "<span class='fa-hidden'>$title</span>";
    return $html;
}

Edit all link attributes (WordPress core filter):

add_filter( 'wp_nav_menu_objects', 'storm_wp_nav_menu_objects', 7, 2 );

function storm_wp_nav_menu_objects( $sorted_menu_items, $args ){

    foreach( $sorted_menu_items as &$item ) {

        if ( 0 != $item->menu_item_parent ) {
            // Skip submenu items
            continue;
        }

        // Only apply changes to links containing this text.
        $search_url = 'facebook.com';

        if ( false !== strpos( $item->url, $search_url ) ) {

            // Add a custom class
            $item->classes[] = 'some-custom-class';

            // Add custom HTML inside the link
            $item->title = '<strong>custom html</strong>' . $item->title;

        }
    }

    return $sorted_menu_items;

}

Can you add X icon?

Menu Social Icons is dependent on the FontAwesome icon library. If an icon exists in FontAwesome, you can add a filter for it using the storm_social_icons_networks example shown in the plugin description.

If an icon does not exist in FontAwesome, you can request see FontAwesome's instructions for requesting new icons.

How can I change how the icons are aligned, positioned, colored, sized, etc.

See the tutorial video on editing appearance and the code samples for various options in the plugin description.

Does this plugin install all of FontAwesome?

Yes. The plugin installs the complete FontAwesome package. You can use any of the icons in your HTML.

I don't see FontAwesome anywhere in the plugin!

We load FontAwesome onto your site using NetDNA's Bootstrap CDN service. This makes it load much faster for your users.

1.3.10

  • New: Add SlideShare. Thanks @mjiderhamn.

1.3.9

  • Fix: Change use_latest filter to request "latest" version of FontAwesome, rather than stopping at 4.0.0. Current version is 4.0.3.

1.3.8

  • Fix: Title notice.

1.3.7

  • New: Remove templates folder. Replace with filters storm_social_icons_title_html and storm_social_icons_icon_html. Add example of core wp_nav_menu_objects filter to readme.

1.3.6

  • New: Allow themes to override HTML output with msi-templates directory.

1.3.5

  • Fix: Horizontal scrollbar on RTL layouts. Thanks @mascatu for the bug report.

1.3.4

  • Fix: Work around compatibility issue with Better WordPress Minify plugin.

1.3.3

  • Fix: Work around bug in WP E-commerce that causes other plugins to not load properly on product pages. Thanks @elfary. See bug report to WP E-commerce.

1.3.2

  • Fix: Properly enqueue stylesheets
  • Fix: Set FontAwesome 4.0 to off by default

1.3

  • New: Preview icons and shortcuts in the WordPress Menu Editor.
  • New: vimeo.com and stackexchange.com icons when FontAwesome 4.0 is turned on.
  • Notice: FontAwesome 4.0 removes support for IE7, so it is off by default. Use the filter storm_social_icons_use_latest shown in the readme to turn on FontAwesome 4.0.

1.2

  • New: Filter for custom icons and URLs.
  • New: Icon for mailto: links.
  • Thanks to mmcginnis for both of these changes.

1.1

  • New: Upgrade to FontAwesome 3.2.1
  • New: ots of new site icons: bitbucket.org, dribbble.com, dropbox.com, flickr.com, foursquare.com, gittip.com, instagram.com, renren.com, stackoverflow.com, trello.com, tumblr.com, vk.com, weibo.com, xing.com, youtube.com

1.0

  • Initial public release.


  1. Search for "Menu Social Icons" under WordPress Admin > Plugins > Add New
  2. Activate the plugin.


 

Click here to cancel reply.

Click here to cancel reply.


*

*


Please copy the string 3zGYrf to the field below:

Home | Sitemap | Contact
Network Skin Theme for BioShip by WordQuest
Password Reset
Please enter your e-mail address. You will receive a new password via e-mail.