Add Twitter, Facebook Like, Google plus one Social share - Version 1.1.1

Version Description

1 New feature and 3 bug fixes

Download this release

Release Info

Developer BeingMaverick
Plugin Icon wp plugin Add Twitter, Facebook Like, Google plus one Social share
Version 1.1.1
Comparing to
See all releases

Code changes from version 1.1.0 to 1.1.1

Files changed (4) hide show
  1. readme.txt +19 -12
  2. tf_admin_page.php +6 -2
  3. tf_display.php +1 -1
  4. twitter-facebook-share.php +1 -1
readme.txt CHANGED
@@ -4,7 +4,7 @@ Plugin Site: http://www.searchtechword.com
4
  Tags: Facebook like, twitter button, twitter share, Google +1 (plus one) button, Google plus one, Stumbleupon, social share, twitter facebook share, google +1 share
5
  Requires at least: 2.8+
6
  Tested up to: 3.1.3
7
- Stable tag: 1.1.0
8
 
9
  == Description ==
10
  <br />
@@ -46,23 +46,30 @@ I will try and help as much as possible and answer all your queries. I am ready
46
  You can Check Screen Shots on my website. I use the same plugin to display Social Share :<br />
47
  [Twitter Facebook Google Plusone Social Share](http://www.searchtechword.com/2011/06/wordpress-plugin-add-twitter-facebook-google-plus-one-share)<br />
48
 
49
- == Change log ==
50
 
51
- == 1.1.0 ==
52
- *Added new feature to display Social share buttons on home page, static pages, category, archives, tags.
 
53
 
54
- == 1.0.2 ==
55
- *Fixed a small bug for left side floating facebook like.
56
- *Eliminated the use of javascript for facebook like as it was conflicting with other facebook plugins.
57
 
58
- == 1.0.1 ==
 
 
 
 
59
  * Add the option in settings to enter your twitter id. This will be used in "via @yourtweetid" in the tweet text.
60
  * Fixed a small CSS bug for facebook like (left floating).
61
 
62
- == 1.0.0 ==
63
- *Initial version
64
 
65
  == Upgrade Notice ==
66
 
67
- == 1.1.0 ==
68
- *New feature to display on home and static page added.
 
 
 
4
  Tags: Facebook like, twitter button, twitter share, Google +1 (plus one) button, Google plus one, Stumbleupon, social share, twitter facebook share, google +1 share
5
  Requires at least: 2.8+
6
  Tested up to: 3.1.3
7
+ Stable tag: 1.1.1
8
 
9
  == Description ==
10
  <br />
46
  You can Check Screen Shots on my website. I use the same plugin to display Social Share :<br />
47
  [Twitter Facebook Google Plusone Social Share](http://www.searchtechword.com/2011/06/wordpress-plugin-add-twitter-facebook-google-plus-one-share)<br />
48
 
49
+ == Changelog ==
50
 
51
+ = 1.1.1=
52
+ * Fixed a small bug related to single page display.
53
+ * Added notice in settings page regarding floating left option.
54
 
55
+ = 1.1.0 =
56
+ * Added new feature to display Social share buttons on home page, static pages, category, archives, tags.
 
57
 
58
+ = 1.0.2 =
59
+ * Fixed a small bug for left side floating facebook like.
60
+ * Eliminated the use of javascript for facebook like as it was conflicting with other facebook plugins.
61
+
62
+ = 1.0.1 =
63
  * Add the option in settings to enter your twitter id. This will be used in "via @yourtweetid" in the tweet text.
64
  * Fixed a small CSS bug for facebook like (left floating).
65
 
66
+ = 1.0.0 =
67
+ * Initial version
68
 
69
  == Upgrade Notice ==
70
 
71
+ = 1.1.1 =
72
+ 1 New feature and 3 bug fixes
73
+
74
+ = 1.1.0 =
75
+ * New feature to display on home and static page added.
tf_admin_page.php CHANGED
@@ -115,6 +115,7 @@ $show_in = array(
115
 
116
  }
117
 
 
118
  $out .= '</td></tr>
119
  <tr><td valign="top" style="width:130px;">'.__("Show buttons in these pages", 'menu-test' ).':</td>
120
  <td style="padding-bottom:20px;">';
@@ -126,8 +127,11 @@ $show_in = array(
126
  . __($text, 'menu-test' ).' &nbsp;&nbsp;</div>';
127
  }
128
 
129
- $out .= '</td></tr>
130
-
 
 
 
131
  <tr><td style="padding-bottom:20px;" valign="top">'.__("Position", 'menu-test' ).':</td>
132
  <td style="padding-bottom:20px;"><select name="twitter_facebook_share_position">
133
  <option value="above" '.$sel_above.' > '.__('Above the post', 'menu-test' ).'</option>
115
 
116
  }
117
 
118
+
119
  $out .= '</td></tr>
120
  <tr><td valign="top" style="width:130px;">'.__("Show buttons in these pages", 'menu-test' ).':</td>
121
  <td style="padding-bottom:20px;">';
127
  . __($text, 'menu-test' ).' &nbsp;&nbsp;</div>';
128
  }
129
 
130
+ $out .= '</td></tr>';
131
+ $out .= '<tr><td style="padding-bottom:20px;" valign="top">'.__("Note", 'menu-test' ).':</td>
132
+ <td style="padding-bottom:20px;">
133
+ <span class="description">'.__("Left Floating is available only for single post and Static pages. By Default the bar will be displayed above the post.", 'menu-test' ).'</span>';
134
+ $out .= '</td></tr>
135
  <tr><td style="padding-bottom:20px;" valign="top">'.__("Position", 'menu-test' ).':</td>
136
  <td style="padding-bottom:20px;"><select name="twitter_facebook_share_position">
137
  <option value="above" '.$sel_above.' > '.__('Above the post', 'menu-test' ).'</option>
tf_display.php CHANGED
@@ -183,7 +183,7 @@ margin:4px 4px 4px 4px;
183
  <?php
184
  $post_link = esc_url(get_permalink());
185
  $post_title = get_the_title();
186
- if ($option['position'] == 'left' && ( !is_single() || !is_singular()))
187
  $option['position'] = 'above';
188
  if ($option['position'] == 'left'){
189
  $output = '<div id="leftcontainerBox">';
183
  <?php
184
  $post_link = esc_url(get_permalink());
185
  $post_title = get_the_title();
186
+ if ($option['position'] == 'left' && ( !is_single() && !is_singular()))
187
  $option['position'] = 'above';
188
  if ($option['position'] == 'left'){
189
  $output = '<div id="leftcontainerBox">';
twitter-facebook-share.php CHANGED
@@ -5,7 +5,7 @@ Description: WordPress plugin for twitter, facebook, Google +1 (plus one) and ot
5
  Author: Kunal Chichkar
6
  Author URI: http://www.searchtechword.com
7
  Plugin URI: http://www.searchtechword.com/2011/06/wordpress-plugin-add-twitter-facebook-google-plus-one-share
8
- Version: 1.1.0
9
  License: GPL
10
  */
11
  /*
5
  Author: Kunal Chichkar
6
  Author URI: http://www.searchtechword.com
7
  Plugin URI: http://www.searchtechword.com/2011/06/wordpress-plugin-add-twitter-facebook-google-plus-one-share
8
+ Version: 1.1.1
9
  License: GPL
10
  */
11
  /*