Version Description
- New CSS3 on-hover effects for social bookmarking buttons (Magnify and Jump).
- New "Comments" button for the floating share bar.
- Updated "Twitter" button icon.
- Floating share bar Javascript is revised and fade effects are added.
Download this release
Release Info
Developer | vaakash |
Plugin | WP Socializer |
Version | 2.4.4 |
Comparing to | |
See all releases |
Code changes from version 2.4.3 to 2.4.4
- admin/wpsr-admin-css.css +10 -0
- admin/wpsr-admin-floating-bar.php +1 -0
- admin/wpsr-admin-js.js +1 -1
- admin/wpsr-admin.php +6 -3
- includes/wpsr-floatingbar.php +38 -1
- includes/wpsr-shortcodes.php +7 -1
- public/css/images/comments-bg.png +0 -0
- public/css/wp-socializer-buttons-css.css +61 -7
- public/js/wp-socializer-floating-bar-js.js +17 -2
- public/social-icons/16/twitter.png +0 -0
- public/social-icons/32/twitter.png +0 -0
- public/social-icons/temp/Thumbs.db +0 -0
- public/social-icons/temp/wp-socializer-sprite-16px-2.png +0 -0
- public/social-icons/temp/wp-socializer-sprite-16px.png +0 -0
- public/social-icons/temp/wp-socializer-sprite-32px-2.png +0 -0
- public/social-icons/temp/wp-socializer-sprite-32px.png +0 -0
- public/social-icons/wp-socializer-sprite-16px.png +0 -0
- public/social-icons/wp-socializer-sprite-32px.png +0 -0
- readme.txt +14 -3
- screenshot-7.png +0 -0
- wp-socializer.php +6 -2
admin/wpsr-admin-css.css
CHANGED
@@ -323,6 +323,16 @@
|
|
323 |
cursor: pointer;
|
324 |
color: #FF0000;
|
325 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
|
327 |
/************/
|
328 |
|
323 |
cursor: pointer;
|
324 |
color: #FF0000;
|
325 |
}
|
326 |
+
.sbSettingsBt{
|
327 |
+
font-size: 18px;
|
328 |
+
float: right;
|
329 |
+
margin-top: -60px;
|
330 |
+
margin-right: 10px;
|
331 |
+
color: #fff;
|
332 |
+
text-decoration: none;
|
333 |
+
background: #00CC00;
|
334 |
+
padding: 10px;
|
335 |
+
}
|
336 |
|
337 |
/************/
|
338 |
|
admin/wpsr-admin-floating-bar.php
CHANGED
@@ -116,6 +116,7 @@ function wpsr_admin_page_floating_bar(){
|
|
116 |
<h3>Select the buttons</h3>
|
117 |
<div class="section">
|
118 |
<h4>Available buttons <small class="smallText">(Click to add buttons)</small></h4>
|
|
|
119 |
<ul class="floatBtsList clearfix">
|
120 |
<?php
|
121 |
global $wpsr_floating_bar_bts;
|
116 |
<h3>Select the buttons</h3>
|
117 |
<div class="section">
|
118 |
<h4>Available buttons <small class="smallText">(Click to add buttons)</small></h4>
|
119 |
+
<small><span class="redText">New:</span> Try out the new comments button (Beta) (<a href="http://www.aakashweb.com/wordpress-plugins/wp-socializer/" target="_blank">Feedback</a>)</small>
|
120 |
<ul class="floatBtsList clearfix">
|
121 |
<?php
|
122 |
global $wpsr_floating_bar_bts;
|
admin/wpsr-admin-js.js
CHANGED
@@ -121,7 +121,7 @@ $j(document).ready(function(){
|
|
121 |
var text = $j(this).siblings('.sbName').text();
|
122 |
var appendList = '<li><span class="sbName">' + text + '</span><span class="sbDelete">x</span></li>';
|
123 |
var pixel = $j(this).attr('data-pixel');
|
124 |
-
|
125 |
$j('#sbSelList_' + pixel + 'px' ).append(appendList);
|
126 |
wpsr_socialbt_selectedgenerator();
|
127 |
});
|
121 |
var text = $j(this).siblings('.sbName').text();
|
122 |
var appendList = '<li><span class="sbName">' + text + '</span><span class="sbDelete">x</span></li>';
|
123 |
var pixel = $j(this).attr('data-pixel');
|
124 |
+
|
125 |
$j('#sbSelList_' + pixel + 'px' ).append(appendList);
|
126 |
wpsr_socialbt_selectedgenerator();
|
127 |
});
|
admin/wpsr-admin.php
CHANGED
@@ -763,6 +763,8 @@ function wpsr_admin_page(){
|
|
763 |
<div class="inWindow winSocialBts">
|
764 |
<input type="hidden" id="wpsr_socialbt_selected16px" name="wpsr_socialbt_selected16px" value="<?php echo $wpsr_socialbt['selected16px']; ?>" />
|
765 |
<input type="hidden" id="wpsr_socialbt_selected32px" name="wpsr_socialbt_selected32px" value="<?php echo $wpsr_socialbt['selected32px']; ?>" />
|
|
|
|
|
766 |
<h3>Select the required social bookmarking buttons</h3>
|
767 |
|
768 |
<div class="section clearfix">
|
@@ -820,7 +822,7 @@ function wpsr_admin_page(){
|
|
820 |
</div>
|
821 |
|
822 |
</div>
|
823 |
-
|
824 |
<h3><?php _e('Settings', 'wpsr'); ?></h3>
|
825 |
<div class="section">
|
826 |
<table width="100%" border="0">
|
@@ -841,9 +843,10 @@ function wpsr_admin_page(){
|
|
841 |
</tr>
|
842 |
|
843 |
<tr>
|
844 |
-
<td height="35"><?php _e('Image on Hover effect', 'wpsr'); ?> </td>
|
845 |
<td><select id="wpsr_socialbt_effect" name="wpsr_socialbt_effect">
|
846 |
-
<option <?php echo $wpsr_socialbt['effect'] == '
|
|
|
847 |
<option <?php echo $wpsr_socialbt['effect'] == 'opacity' ? ' selected="selected"' : ''; ?> value="opacity">Transparency Effect</option>
|
848 |
<option <?php echo $wpsr_socialbt['effect'] == 'none' ? ' selected="selected"' : ''; ?> value="none"><?php _e('No Effect', 'wpsr'); ?></option>
|
849 |
</select></td>
|
763 |
<div class="inWindow winSocialBts">
|
764 |
<input type="hidden" id="wpsr_socialbt_selected16px" name="wpsr_socialbt_selected16px" value="<?php echo $wpsr_socialbt['selected16px']; ?>" />
|
765 |
<input type="hidden" id="wpsr_socialbt_selected32px" name="wpsr_socialbt_selected32px" value="<?php echo $wpsr_socialbt['selected32px']; ?>" />
|
766 |
+
<a href="#settings" class="sbSettingsBt">Settings</a>
|
767 |
+
|
768 |
<h3>Select the required social bookmarking buttons</h3>
|
769 |
|
770 |
<div class="section clearfix">
|
822 |
</div>
|
823 |
|
824 |
</div>
|
825 |
+
<a id="settings"></a>
|
826 |
<h3><?php _e('Settings', 'wpsr'); ?></h3>
|
827 |
<div class="section">
|
828 |
<table width="100%" border="0">
|
843 |
</tr>
|
844 |
|
845 |
<tr>
|
846 |
+
<td height="35"><?php _e('Image on Hover effect', 'wpsr'); ?> <small class="redText">New effects</small></td>
|
847 |
<td><select id="wpsr_socialbt_effect" name="wpsr_socialbt_effect">
|
848 |
+
<option <?php echo $wpsr_socialbt['effect'] == 'magnify' ? ' selected="selected"' : ''; ?> value="magnify">Magnify Effect (New)</option>
|
849 |
+
<option <?php echo $wpsr_socialbt['effect'] == 'jump' ? ' selected="selected"' : ''; ?> value="jump">Jump Effect (Updated)</option>
|
850 |
<option <?php echo $wpsr_socialbt['effect'] == 'opacity' ? ' selected="selected"' : ''; ?> value="opacity">Transparency Effect</option>
|
851 |
<option <?php echo $wpsr_socialbt['effect'] == 'none' ? ' selected="selected"' : ''; ?> value="none"><?php _e('No Effect', 'wpsr'); ?></option>
|
852 |
</select></td>
|
includes/wpsr-floatingbar.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Floating share bar Processor code for WP Socializer Plugin
|
4 |
-
* Version : 1.
|
5 |
* Since : v2.4
|
6 |
* Author : Aakash Chakravarthy
|
7 |
*/
|
@@ -77,4 +77,41 @@ function wpsr_floatingbts_anchor($content = ''){
|
|
77 |
}
|
78 |
}
|
79 |
add_action('the_content', 'wpsr_floatingbts_anchor');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
?>
|
1 |
<?php
|
2 |
/*
|
3 |
* Floating share bar Processor code for WP Socializer Plugin
|
4 |
+
* Version : 1.2
|
5 |
* Since : v2.4
|
6 |
* Author : Aakash Chakravarthy
|
7 |
*/
|
77 |
}
|
78 |
}
|
79 |
add_action('the_content', 'wpsr_floatingbts_anchor');
|
80 |
+
|
81 |
+
## Floating sharebar comments button (Beta)
|
82 |
+
function wpsr_floatingbts_commentbt($args){
|
83 |
+
global $post;
|
84 |
+
|
85 |
+
$defaults = array (
|
86 |
+
'type' => 'vertical'
|
87 |
+
);
|
88 |
+
|
89 |
+
$args = wp_parse_args($args, $defaults);
|
90 |
+
extract($args, EXTR_SKIP);
|
91 |
+
|
92 |
+
$comments_num = get_comments_number();
|
93 |
+
|
94 |
+
if ( comments_open() ) {
|
95 |
+
if($type == 'vertical'){
|
96 |
+
return '<div class="wpsr_commentsbt">
|
97 |
+
<div class="wpsr_cmt_bubble" title="Comments"><a href="' . get_comments_link() .'">' . $comments_num . '</a></div>
|
98 |
+
<div class="wpsr_cmt_button"><a href="' . get_comments_link() .'">Comment</a></div>
|
99 |
+
</div>';
|
100 |
+
}else{
|
101 |
+
|
102 |
+
if ( $comments_num == 0 ) {
|
103 |
+
$comments = __('No Comments');
|
104 |
+
} elseif ( $comments_num > 1 ) {
|
105 |
+
$comments = $comments_num . __(' Comments');
|
106 |
+
} else {
|
107 |
+
$comments = __('1 Comment');
|
108 |
+
}
|
109 |
+
|
110 |
+
return '<a href="' . get_comments_link() .'">' . $comments . '</a>';
|
111 |
+
}
|
112 |
+
} else {
|
113 |
+
return '';
|
114 |
+
}
|
115 |
+
|
116 |
+
}
|
117 |
?>
|
includes/wpsr-shortcodes.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Shortcodes for WP Socializer plugin
|
4 |
-
* Version : 2.
|
5 |
* Author : Aakash Chakravarthy
|
6 |
* Since : 2.0
|
7 |
*/
|
@@ -85,4 +85,10 @@ function wpsr_pinterest_shortcode($atts){
|
|
85 |
return wpsr_pinterest($atts) . wpsr_pinterest_script();
|
86 |
}
|
87 |
add_shortcode('wpsr_pinterest', 'wpsr_pinterest_shortcode');
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
?>
|
1 |
<?php
|
2 |
/*
|
3 |
* Shortcodes for WP Socializer plugin
|
4 |
+
* Version : 2.2
|
5 |
* Author : Aakash Chakravarthy
|
6 |
* Since : 2.0
|
7 |
*/
|
85 |
return wpsr_pinterest($atts) . wpsr_pinterest_script();
|
86 |
}
|
87 |
add_shortcode('wpsr_pinterest', 'wpsr_pinterest_shortcode');
|
88 |
+
|
89 |
+
## Comments Shortcode - Floating sharebar - since v2.4.4 (Beta)
|
90 |
+
function wpsr_commentsbt_shortcode($atts){
|
91 |
+
return wpsr_floatingbts_commentbt($atts);
|
92 |
+
}
|
93 |
+
add_shortcode('wpsr_commentsbt', 'wpsr_commentsbt_shortcode');
|
94 |
?>
|
public/css/images/comments-bg.png
ADDED
Binary file
|
public/css/wp-socializer-buttons-css.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
/*
|
2 |
-
* WP Socializer Social buttons - CSS File - v2.
|
3 |
* Author: Aakash Chakravarthy
|
4 |
*/
|
5 |
|
@@ -56,13 +56,32 @@
|
|
56 |
filter:alpha(opacity=100);
|
57 |
opacity: 1;
|
58 |
}
|
59 |
-
.wp-socializer-jump li {
|
60 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
}
|
62 |
-
.wp-socializer-jump li:hover {
|
63 |
-
margin-top: -5px;
|
64 |
-
}
|
65 |
-
|
66 |
/** Columns **/
|
67 |
.columns-5 li{
|
68 |
width: 19%;
|
@@ -208,6 +227,9 @@
|
|
208 |
.wpsr-floatbar-dark .wpsr_floatbt a{
|
209 |
color: white !important;
|
210 |
}
|
|
|
|
|
|
|
211 |
|
212 |
/* Link back */
|
213 |
.wpsr-floatbar-float_left .wpsr-linkback{
|
@@ -258,6 +280,38 @@
|
|
258 |
opacity: 0.5;
|
259 |
}
|
260 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
/* Misc */
|
262 |
.wpsr-floatbar-float_left .wpsr_floatbt .fb-like{
|
263 |
width: 50px !important;
|
1 |
/*
|
2 |
+
* WP Socializer Social buttons - CSS File - v2.4
|
3 |
* Author: Aakash Chakravarthy
|
4 |
*/
|
5 |
|
56 |
filter:alpha(opacity=100);
|
57 |
opacity: 1;
|
58 |
}
|
59 |
+
.wp-socializer-jump li img{
|
60 |
+
-webkit-transition: all 200ms linear;
|
61 |
+
-moz-transition: all 200ms linear;
|
62 |
+
-o-transition: all 200ms linear;
|
63 |
+
transition: all 200ms linear;
|
64 |
+
}
|
65 |
+
.wp-socializer-jump li:hover img{
|
66 |
+
transform: translateY(-5px);
|
67 |
+
-ms-transform: translateY(-5px);
|
68 |
+
-webkit-transform: translateY(-5px);
|
69 |
+
-o-transform: translateY(-5px);
|
70 |
+
-moz-transform: translateY(-5px);
|
71 |
+
}
|
72 |
+
.wp-socializer-magnify li img{
|
73 |
+
-webkit-transition: all 200ms linear;
|
74 |
+
-moz-transition: all 200ms linear;
|
75 |
+
-o-transition: all 200ms linear;
|
76 |
+
transition: all 200ms linear;
|
77 |
+
}
|
78 |
+
.wp-socializer-magnify li:hover img{
|
79 |
+
transform: scale(1.3);
|
80 |
+
-ms-transform: scale(1.3);
|
81 |
+
-webkit-transform: scale(1.3);
|
82 |
+
-o-transform: scale(1.3);
|
83 |
+
-moz-transform: scale(1.3);
|
84 |
}
|
|
|
|
|
|
|
|
|
85 |
/** Columns **/
|
86 |
.columns-5 li{
|
87 |
width: 19%;
|
227 |
.wpsr-floatbar-dark .wpsr_floatbt a{
|
228 |
color: white !important;
|
229 |
}
|
230 |
+
.wpsr-floatbar-dark .wpsr_floatbt .wpsr_commentsbt a{
|
231 |
+
color: black !important;
|
232 |
+
}
|
233 |
|
234 |
/* Link back */
|
235 |
.wpsr-floatbar-float_left .wpsr-linkback{
|
280 |
opacity: 0.5;
|
281 |
}
|
282 |
|
283 |
+
/* Comments Button */
|
284 |
+
.wpsr_commentsbt .wpsr_cmt_bubble{
|
285 |
+
background: url(images/comments-bg.png) no-repeat center top;
|
286 |
+
height: 35px;
|
287 |
+
width: 50px;
|
288 |
+
text-align: center;
|
289 |
+
margin: 0 auto;
|
290 |
+
line-height: 0px;
|
291 |
+
}
|
292 |
+
.wpsr_commentsbt .wpsr_cmt_bubble a{
|
293 |
+
display: inline-block;
|
294 |
+
margin-top: 15px;
|
295 |
+
text-decoration: none;
|
296 |
+
}
|
297 |
+
.wpsr_commentsbt .wpsr_cmt_button{
|
298 |
+
background: url(images/grey-bg.png) repeat-x -70px;
|
299 |
+
border: 1px solid #ccc;
|
300 |
+
-webkit-border-radius: 3px;
|
301 |
+
border-radius: 3px;
|
302 |
+
padding: 2px;
|
303 |
+
line-height: 0px;
|
304 |
+
}
|
305 |
+
.wpsr_commentsbt .wpsr_cmt_button:hover, .wpsr_commentsbt .wpsr_cmt_bubble:hover{
|
306 |
+
opacity: 0.5;
|
307 |
+
}
|
308 |
+
.wpsr_commentsbt .wpsr_cmt_button a{
|
309 |
+
color: #666666;
|
310 |
+
text-decoration: none;
|
311 |
+
font: 10px Arial, Helvetica, sans-serif;
|
312 |
+
border: 0px;
|
313 |
+
}
|
314 |
+
|
315 |
/* Misc */
|
316 |
.wpsr-floatbar-float_left .wpsr_floatbt .fb-like{
|
317 |
width: 50px !important;
|
public/js/wp-socializer-floating-bar-js.js
CHANGED
@@ -1,12 +1,23 @@
|
|
1 |
/*
|
2 |
* Copyright 2012 Aakash Chakravarthy - www.aakashweb.com
|
3 |
* Created for WP Socializer - Wordpress Plugin
|
|
|
4 |
*/
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
jQuery(document).ready(function(){
|
7 |
var $floatbar = jQuery(".wpsr-floatbar-float_left");
|
8 |
var $anchor = jQuery('.wpsr_floatbts_anchor');
|
9 |
-
|
|
|
|
|
|
|
10 |
// Position the left float bar to the anchor
|
11 |
var wpsr_position_floatbar = function(){
|
12 |
anchorOffset = jQuery('.wpsr_floatbts_anchor').offset();
|
@@ -27,7 +38,7 @@ jQuery(document).ready(function(){
|
|
27 |
c.css({position:"fixed", top: "30px"});
|
28 |
}else{
|
29 |
if(b<=d){
|
30 |
-
c.css({position:"absolute", top: anchorOffset.top + "px"
|
31 |
}
|
32 |
}
|
33 |
});
|
@@ -38,6 +49,10 @@ jQuery(document).ready(function(){
|
|
38 |
wpsr_position_floatbar();
|
39 |
});
|
40 |
|
|
|
|
|
|
|
|
|
41 |
wpsr_position_floatbar();
|
42 |
|
43 |
// Hiding the bar
|
1 |
/*
|
2 |
* Copyright 2012 Aakash Chakravarthy - www.aakashweb.com
|
3 |
* Created for WP Socializer - Wordpress Plugin
|
4 |
+
* v1.2
|
5 |
*/
|
6 |
|
7 |
+
if(typeof jQuery == 'undefined'){
|
8 |
+
if(typeof document.getElementsByClassName == 'function'){
|
9 |
+
document.getElementsByClassName('wpsr-floatbar-float_left')[0].style.display = 'none';
|
10 |
+
console.log('WP Socializer float bar: There is a Javascript error in the page and the floatbar is hidden');
|
11 |
+
}
|
12 |
+
}
|
13 |
+
|
14 |
jQuery(document).ready(function(){
|
15 |
var $floatbar = jQuery(".wpsr-floatbar-float_left");
|
16 |
var $anchor = jQuery('.wpsr_floatbts_anchor');
|
17 |
+
|
18 |
+
// Init effects
|
19 |
+
$floatbar.hide().fadeIn(2000);
|
20 |
+
|
21 |
// Position the left float bar to the anchor
|
22 |
var wpsr_position_floatbar = function(){
|
23 |
anchorOffset = jQuery('.wpsr_floatbts_anchor').offset();
|
38 |
c.css({position:"fixed", top: "30px"});
|
39 |
}else{
|
40 |
if(b<=d){
|
41 |
+
c.css({position:"absolute", top: anchorOffset.top + "px"});
|
42 |
}
|
43 |
}
|
44 |
});
|
49 |
wpsr_position_floatbar();
|
50 |
});
|
51 |
|
52 |
+
window.onload = function(){
|
53 |
+
wpsr_position_floatbar();
|
54 |
+
};
|
55 |
+
|
56 |
wpsr_position_floatbar();
|
57 |
|
58 |
// Hiding the bar
|
public/social-icons/16/twitter.png
CHANGED
Binary file
|
public/social-icons/32/twitter.png
CHANGED
Binary file
|
public/social-icons/temp/Thumbs.db
DELETED
Binary file
|
public/social-icons/temp/wp-socializer-sprite-16px-2.png
DELETED
Binary file
|
public/social-icons/temp/wp-socializer-sprite-16px.png
DELETED
Binary file
|
public/social-icons/temp/wp-socializer-sprite-32px-2.png
DELETED
Binary file
|
public/social-icons/temp/wp-socializer-sprite-32px.png
DELETED
Binary file
|
public/social-icons/wp-socializer-sprite-16px.png
CHANGED
Binary file
|
public/social-icons/wp-socializer-sprite-32px.png
CHANGED
Binary file
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ License: GPLv2 or later
|
|
7 |
Donate Link: http://bit.ly/wpsrDonate
|
8 |
Requires at least: 2.8
|
9 |
Tested up to: 3.4.1
|
10 |
-
Stable tag: 2.4.
|
11 |
|
12 |
Super Cool Plugin for inserting all kinds of Social Bookmarking & Sharing buttons. Has customizable Floating Share Bar, Widgets, Shortcodes also.
|
13 |
|
@@ -23,7 +23,11 @@ WP Socializer is an advanced plugin for inserting all kinds of Social bookmarkin
|
|
23 |
* Widgets for inserting FB like box & G+ badges in sidebar.
|
24 |
* Template functions are available for advanced placements.
|
25 |
|
26 |
-
|
|
|
|
|
|
|
|
|
27 |
|
28 |
[youtube="http://www.youtube.com/v/1uimAE8rFYE"]
|
29 |
|
@@ -39,6 +43,7 @@ Using WP Socializer, you can insert all these buttons into your site. These butt
|
|
39 |
* Pinterest buttons.
|
40 |
* 3 Kinds of retweet buttons.
|
41 |
* ... and all kinds of Digg, LinkedIn, Reddit & StumbleUpon buttons
|
|
|
42 |
|
43 |
= Screenshots =
|
44 |
|
@@ -90,7 +95,7 @@ For custom placement in theme files and posts, check out the following documenta
|
|
90 |
4. A Floating Share Bar created using WP Socializer in action.
|
91 |
5. A dark theme of the floating share bar.
|
92 |
6. The horizontal mode of the floating share bar.
|
93 |
-
7.
|
94 |
8. The admin UI showing the buttons inserted into the posts.
|
95 |
9. The social bookmarking buttons selection page.
|
96 |
10. The floating share bar settings page.
|
@@ -100,6 +105,12 @@ For custom placement in theme files and posts, check out the following documenta
|
|
100 |
|
101 |
== Changelog ==
|
102 |
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
= 2.4.3 =
|
104 |
* XSS Vulnerability issue in the "Services selector" page is fixed.
|
105 |
* Added nounce to the Admin page forms.
|
7 |
Donate Link: http://bit.ly/wpsrDonate
|
8 |
Requires at least: 2.8
|
9 |
Tested up to: 3.4.1
|
10 |
+
Stable tag: 2.4.4
|
11 |
|
12 |
Super Cool Plugin for inserting all kinds of Social Bookmarking & Sharing buttons. Has customizable Floating Share Bar, Widgets, Shortcodes also.
|
13 |
|
23 |
* Widgets for inserting FB like box & G+ badges in sidebar.
|
24 |
* Template functions are available for advanced placements.
|
25 |
|
26 |
+
= New in v2.4.4 =
|
27 |
+
* New CSS3 **on-hover effects** for social bookmarking buttons (Magnify and Jump) ([Screenshot-7](http://www.aakashweb.com/wordpress-plugins/wp-socializer/#screenshots)).
|
28 |
+
* New "Comments" button for the floating share bar.
|
29 |
+
* Updated "Twitter" button icon.
|
30 |
+
* Floating share bar Javascript is revised and fade effects are added.
|
31 |
|
32 |
[youtube="http://www.youtube.com/v/1uimAE8rFYE"]
|
33 |
|
43 |
* Pinterest buttons.
|
44 |
* 3 Kinds of retweet buttons.
|
45 |
* ... and all kinds of Digg, LinkedIn, Reddit & StumbleUpon buttons
|
46 |
+
* Comments button for floating share bar.
|
47 |
|
48 |
= Screenshots =
|
49 |
|
95 |
4. A Floating Share Bar created using WP Socializer in action.
|
96 |
5. A dark theme of the floating share bar.
|
97 |
6. The horizontal mode of the floating share bar.
|
98 |
+
7. Magnify, Jump effects and the "Comments" button.
|
99 |
8. The admin UI showing the buttons inserted into the posts.
|
100 |
9. The social bookmarking buttons selection page.
|
101 |
10. The floating share bar settings page.
|
105 |
|
106 |
== Changelog ==
|
107 |
|
108 |
+
= 2.4.4 =
|
109 |
+
* New CSS3 on-hover effects for social bookmarking buttons (Magnify and Jump).
|
110 |
+
* New "Comments" button for the floating share bar.
|
111 |
+
* Updated "Twitter" button icon.
|
112 |
+
* Floating share bar Javascript is revised and fade effects are added.
|
113 |
+
|
114 |
= 2.4.3 =
|
115 |
* XSS Vulnerability issue in the "Services selector" page is fixed.
|
116 |
* Added nounce to the Admin page forms.
|
screenshot-7.png
CHANGED
Binary file
|
wp-socializer.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Socializer
|
4 |
-
Version: 2.4.
|
5 |
Plugin URI: http://www.aakashweb.com/
|
6 |
Description: WP Socializer is an advanced plugin for inserting all kinds of Social bookmarking & sharing buttons. It has super cool features to insert the buttons into posts, sidebar. It also has Floating sharebar. <a href="http://youtu.be/1uimAE8rFYE" target="_blank">Check out the demo video</a>.
|
7 |
Author: Aakash Chakravarthy
|
@@ -14,7 +14,7 @@ if(!defined('WP_CONTENT_URL')) {
|
|
14 |
$wpsr_url = WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)) . '/';
|
15 |
}
|
16 |
|
17 |
-
define('WPSR_VERSION', '2.4.
|
18 |
define('WPSR_AUTHOR', 'Aakash Chakravarthy');
|
19 |
define('WPSR_URL', $wpsr_url);
|
20 |
define('WPSR_PUBLIC_URL', WPSR_URL . 'public/');
|
@@ -958,6 +958,10 @@ $wpsr_floating_bar_bts = array(
|
|
958 |
'float_left' => '[wpsr_pinterest type="vertical"]',
|
959 |
'bottom_fixed' => '[wpsr_pinterest type="horizontal"]',
|
960 |
),
|
|
|
|
|
|
|
|
|
961 |
'Email' => array(
|
962 |
'float_left' => '[wpsr_socialbts output="singles" type="32px" services="email" sprites=0 effect=none]',
|
963 |
'bottom_fixed' => '[wpsr_socialbts output="singles" services="email" label=1 sprites=0 effect=none]'
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: WP Socializer
|
4 |
+
Version: 2.4.4
|
5 |
Plugin URI: http://www.aakashweb.com/
|
6 |
Description: WP Socializer is an advanced plugin for inserting all kinds of Social bookmarking & sharing buttons. It has super cool features to insert the buttons into posts, sidebar. It also has Floating sharebar. <a href="http://youtu.be/1uimAE8rFYE" target="_blank">Check out the demo video</a>.
|
7 |
Author: Aakash Chakravarthy
|
14 |
$wpsr_url = WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)) . '/';
|
15 |
}
|
16 |
|
17 |
+
define('WPSR_VERSION', '2.4.4');
|
18 |
define('WPSR_AUTHOR', 'Aakash Chakravarthy');
|
19 |
define('WPSR_URL', $wpsr_url);
|
20 |
define('WPSR_PUBLIC_URL', WPSR_URL . 'public/');
|
958 |
'float_left' => '[wpsr_pinterest type="vertical"]',
|
959 |
'bottom_fixed' => '[wpsr_pinterest type="horizontal"]',
|
960 |
),
|
961 |
+
'Comments' => array(
|
962 |
+
'float_left' => '[wpsr_commentsbt type="vertical"]',
|
963 |
+
'bottom_fixed' => '[wpsr_commentsbt type="horizontal"]',
|
964 |
+
),
|
965 |
'Email' => array(
|
966 |
'float_left' => '[wpsr_socialbts output="singles" type="32px" services="email" sprites=0 effect=none]',
|
967 |
'bottom_fixed' => '[wpsr_socialbts output="singles" services="email" label=1 sprites=0 effect=none]'
|