Menu Social Icons - Version 1.3.3

Version Description

  • 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.
Download this release

Release Info

Developer pdclark
Plugin Icon Menu Social Icons
Version 1.3.3
Comparing to
See all releases

Code changes from version 1.3.2 to 1.3.3

Files changed (2) hide show
  1. plugin.php +4 -3
  2. readme.txt +7 -11
plugin.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Menu Social Icons
4
  Description: Change menu links to social sites to icons automatically. Uses <a href="http://fortawesome.github.io/Font-Awesome/" target="_blank">FontAwesome</a> and supports: Bitbucket, Dribbble, Dropbox, Flickr, Foursquare, Gittip, Instagram, RenRen, Stack Overflow, Trello, Tumblr, VK, Weibo, Xing, and YouTube.
5
- Version: 1.3.2
6
  Author: Brainstorm Media
7
  Author URI: http://brainstormmedia.com
8
  */
@@ -30,7 +30,7 @@ Author URI: http://brainstormmedia.com
30
  */
31
 
32
  define( 'MSI_PLUGIN_FILE', __FILE__ );
33
- define( 'MSI_VERSION', '1.3.2' );
34
 
35
  add_action( 'init', 'storm_menu_social_icons_init' );
36
 
@@ -56,7 +56,8 @@ function storm_menu_social_icons_init() {
56
  require_once dirname ( __FILE__ ) . '/classes/msi-admin.php';
57
 
58
  // Frontend actions
59
- add_action( 'template_redirect', 'MSI_Frontend::get_instance' );
 
60
 
61
  // Admin actions
62
  add_action( 'admin_init', 'MSI_Admin::get_instance' );
2
  /*
3
  Plugin Name: Menu Social Icons
4
  Description: Change menu links to social sites to icons automatically. Uses <a href="http://fortawesome.github.io/Font-Awesome/" target="_blank">FontAwesome</a> and supports: Bitbucket, Dribbble, Dropbox, Flickr, Foursquare, Gittip, Instagram, RenRen, Stack Overflow, Trello, Tumblr, VK, Weibo, Xing, and YouTube.
5
+ Version: 1.3.3
6
  Author: Brainstorm Media
7
  Author URI: http://brainstormmedia.com
8
  */
30
  */
31
 
32
  define( 'MSI_PLUGIN_FILE', __FILE__ );
33
+ define( 'MSI_VERSION', '1.3.3' );
34
 
35
  add_action( 'init', 'storm_menu_social_icons_init' );
36
 
56
  require_once dirname ( __FILE__ ) . '/classes/msi-admin.php';
57
 
58
  // Frontend actions
59
+ // WP E-Commerce blocks other template_redirect actions by exiting at priority 10.
60
+ add_action( 'template_redirect', 'MSI_Frontend::get_instance', 5 );
61
 
62
  // Admin actions
63
  add_action( 'admin_init', 'MSI_Admin::get_instance' );
readme.txt CHANGED
@@ -4,8 +4,8 @@ Plugin URI: https://github.com/brainstormmedia/menu-social-icons
4
  Author URI: http://brainstormmedia.com
5
  Tags: social, icons, menus, FontAwesome, social media, easy
6
  Requires at least: 3.4
7
- Tested up to: 3.7
8
- Stable tag: 1.3.2
9
  License: GPLv2
10
 
11
  Add social icons to your WordPress menu items automatically.
@@ -123,6 +123,9 @@ We load FontAwesome onto your site using NetDNA's [Bootstrap CDN](http://www.boo
123
 
124
  == Changelog ==
125
 
 
 
 
126
  = 1.3.2 =
127
  * Fix: Properly enqueue stylesheets
128
  * Fix: Set FontAwesome 4.0 to off by default
@@ -146,13 +149,6 @@ We load FontAwesome onto your site using NetDNA's [Bootstrap CDN](http://www.boo
146
 
147
  == Upgrade Notice ==
148
 
149
- **1.3.2**
150
-
151
- * Fix: Properly enqueue stylesheets
152
- * Fix: Set FontAwesome 4.0 to off by default
153
 
154
- **1.3**
155
-
156
- * New: Preview icons and shortcuts in the WordPress Menu Editor.
157
- * New: vimeo.com and stackexchange.com icons when FontAwesome 4.0 is turned on.
158
- * 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.
4
  Author URI: http://brainstormmedia.com
5
  Tags: social, icons, menus, FontAwesome, social media, easy
6
  Requires at least: 3.4
7
+ Tested up to: 3.7.1
8
+ Stable tag: 1.3.3
9
  License: GPLv2
10
 
11
  Add social icons to your WordPress menu items automatically.
123
 
124
  == Changelog ==
125
 
126
+ = 1.3.3 =
127
+ * Fix: Work around bug in WP E-commerce that causes other plugins to not load properly on product pages. Thanks [@elfary](http://wordpress.org/support/topic/menu-with-e-commerce). See [bug report to WP E-commerce](http://wordpress.org/support/topic/other-plugins-blocked-from-loading-on-product-pages).
128
+
129
  = 1.3.2 =
130
  * Fix: Properly enqueue stylesheets
131
  * Fix: Set FontAwesome 4.0 to off by default
149
 
150
  == Upgrade Notice ==
151
 
152
+ **1.3.3**
 
 
 
153
 
154
+ * Fix: Work around bug in WP E-commerce that causes other plugins to not load properly on product pages. Thanks [@elfary](http://wordpress.org/support/topic/menu-with-e-commerce). See [bug report to WP E-commerce](http://wordpress.org/support/topic/other-plugins-blocked-from-loading-on-product-pages).