Version Description
- Feedback mechanism disabled
- Tags reduced
Download this release
Release Info
Developer | socialdude |
Plugin | Social Share Icons & Social Share Buttons |
Version | 2.3.2 |
Comparing to | |
See all releases |
Code changes from version 2.3.1 to 2.3.2
- css/sfsi-admin-style.css +0 -25
- css/sfsi-style.css +1 -1
- libs/sfsi_Init_JqueryCss.php +1 -50
- libs/sfsi_install_uninstall.php +1 -1
- readme.txt +7 -3
- ultimate_social_media_icons.php +2 -15
css/sfsi-admin-style.css
CHANGED
@@ -1012,31 +1012,6 @@ ul#adminmenu li.toplevel_page_sfsi-plus-options a.current, ul#adminmenu li.tople
|
|
1012 |
margin-left: 15px;
|
1013 |
text-decoration: none;
|
1014 |
}
|
1015 |
-
.wp-pointer-content > form#sfsi_plus_feedbackForm {
|
1016 |
-
margin: 15px;
|
1017 |
-
}
|
1018 |
-
#sfsi_plus_feedbackForm div {
|
1019 |
-
float: left;
|
1020 |
-
margin: 5px 0;
|
1021 |
-
width: 100%;
|
1022 |
-
}
|
1023 |
-
#sfsi_plus_feedbackForm label {
|
1024 |
-
float: left;
|
1025 |
-
font-weight: bold;
|
1026 |
-
margin-bottom: 4px;
|
1027 |
-
width: 100%;
|
1028 |
-
}
|
1029 |
-
#sfsi_plus_feedbackForm input[type="email"], #sfsi_plus_feedbackForm textarea {
|
1030 |
-
margin: 0;
|
1031 |
-
width: 100%;
|
1032 |
-
}
|
1033 |
-
#sfsi_plus_feedbackForm .button {
|
1034 |
-
margin-right: 5px;
|
1035 |
-
}
|
1036 |
-
#sfsi_plus_loadergif
|
1037 |
-
{
|
1038 |
-
display: none;
|
1039 |
-
}
|
1040 |
@media (max-width:1160px) {
|
1041 |
.sfsi_plus_subscription_html xmp {
|
1042 |
display: block;
|
1012 |
margin-left: 15px;
|
1013 |
text-decoration: none;
|
1014 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1015 |
@media (max-width:1160px) {
|
1016 |
.sfsi_plus_subscription_html xmp {
|
1017 |
display: block;
|
css/sfsi-style.css
CHANGED
@@ -2343,7 +2343,7 @@ h2.optional {
|
|
2343 |
}
|
2344 |
.sf_google > div
|
2345 |
{
|
2346 |
-
|
2347 |
}
|
2348 |
.sf_google iframe
|
2349 |
{
|
2343 |
}
|
2344 |
.sf_google > div
|
2345 |
{
|
2346 |
+
width: 70px !important;
|
2347 |
}
|
2348 |
.sf_google iframe
|
2349 |
{
|
libs/sfsi_Init_JqueryCss.php
CHANGED
@@ -98,54 +98,5 @@ function sfsiplus_plugin_front_enqueue_script()
|
|
98 |
/* initilaize the ajax url in javascript */
|
99 |
wp_localize_script( 'SFSIPLUSCustomJs', 'ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ),'plugin_url'=> SFSI_PLUS_PLUGURL) );
|
100 |
}
|
101 |
-
add_action( 'wp_enqueue_scripts', 'sfsiplus_plugin_front_enqueue_script' );
|
102 |
-
|
103 |
-
function sfsi_plus_footerFeedbackScript()
|
104 |
-
{
|
105 |
-
wp_enqueue_style('wp-pointer');
|
106 |
-
wp_enqueue_script('wp-pointer');
|
107 |
-
wp_enqueue_script('utils'); // for user settings
|
108 |
-
|
109 |
-
$html = '<div>';
|
110 |
-
$html .= '<label>'.__('Optional: Please tell us why you deactivate our plugin so that we can make it better!',SFSI_PLUS_DOMAIN).'</label>';
|
111 |
-
$html .= '<textarea id="sfsi_plus_feedbackMsg" name="reason"></textarea>';
|
112 |
-
$html .= '</div>';
|
113 |
-
?>
|
114 |
-
<script type="text/javascript">
|
115 |
-
jQuery('#sfsi_plus_deactivateButton').click(function(){
|
116 |
-
jQuery('#sfsi_plus_deactivateButton').pointer({
|
117 |
-
content: '<form method="post" id="sfsi_plus_feedbackForm"><?php echo $html; ?><div><input type="button" name="sfsi_plus_sendFeedback" value="Deactivate" class="button primary-button" /></div><img id="sfsi_plus_loadergif" src="<?php echo site_url()."/wp-includes/images/spinner.gif"; ?>" /></form>',
|
118 |
-
position: {
|
119 |
-
edge:'top',
|
120 |
-
align:'left',
|
121 |
-
},
|
122 |
-
close: function() {
|
123 |
-
//
|
124 |
-
}
|
125 |
-
}).pointer('open');
|
126 |
-
return false;
|
127 |
-
});
|
128 |
-
jQuery("body").on("click","input[name='sfsi_plus_sendFeedback']", function(){
|
129 |
-
var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>';
|
130 |
-
var deactivateUrl = jQuery('#ultimate-social-media-plus .deactivate a').attr('href');
|
131 |
-
var e = {
|
132 |
-
action:"sfsi_plus_feedbackForm",
|
133 |
-
email: '<?php echo get_option("admin_email"); ?>',
|
134 |
-
msg:jQuery("#sfsi_plus_feedbackMsg").val()
|
135 |
-
};
|
136 |
-
jQuery("#sfsi_plus_loadergif").show();
|
137 |
-
jQuery.ajax({
|
138 |
-
url:ajaxurl,
|
139 |
-
type:"post",
|
140 |
-
data:e,
|
141 |
-
success:function(responce) {
|
142 |
-
jQuery("#sfsi_plus_loadergif").hide();
|
143 |
-
window.location.href = deactivateUrl;
|
144 |
-
}
|
145 |
-
});
|
146 |
-
});
|
147 |
-
</script>
|
148 |
-
<?php
|
149 |
-
}
|
150 |
-
add_action( 'admin_footer', 'sfsi_plus_footerFeedbackScript' );
|
151 |
?>
|
98 |
/* initilaize the ajax url in javascript */
|
99 |
wp_localize_script( 'SFSIPLUSCustomJs', 'ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ),'plugin_url'=> SFSI_PLUS_PLUGURL) );
|
100 |
}
|
101 |
+
add_action( 'wp_enqueue_scripts', 'sfsiplus_plugin_front_enqueue_script' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
?>
|
libs/sfsi_install_uninstall.php
CHANGED
@@ -12,7 +12,7 @@ function sfsi_plus_update_plugin()
|
|
12 |
}
|
13 |
|
14 |
//Install version
|
15 |
-
update_option("sfsi_plus_pluginVersion", "2.
|
16 |
|
17 |
/*show notification*/
|
18 |
if(!get_option('sfsi_plus_show_notification'))
|
12 |
}
|
13 |
|
14 |
//Install version
|
15 |
+
update_option("sfsi_plus_pluginVersion", "2.32");
|
16 |
|
17 |
/*show notification*/
|
18 |
if(!get_option('sfsi_plus_show_notification'))
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Ultimate Social Media Icons PLUS ===
|
2 |
Contributors: socialdude
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=seb.richter%40gmx%2enet&lc=LI
|
4 |
-
Tags: social media,
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.4.2
|
7 |
-
Stable tag: 2.3.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -75,6 +75,10 @@ Please check out the FAQ on http://ultimatelysocial.com
|
|
75 |
|
76 |
== Changelog ==
|
77 |
|
|
|
|
|
|
|
|
|
78 |
= 2.3.1 =
|
79 |
* Added Facebook share button after/before posts
|
80 |
* G+ design issues on black background fixed
|
@@ -195,5 +199,5 @@ Please check out the FAQ on http://ultimatelysocial.com
|
|
195 |
|
196 |
== Upgrade Notice ==
|
197 |
|
198 |
-
= 2.3.
|
199 |
* Please upgrade if you faced issues before or want to use different languages
|
1 |
=== Ultimate Social Media Icons PLUS ===
|
2 |
Contributors: socialdude
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=seb.richter%40gmx%2enet&lc=LI
|
4 |
+
Tags: social media, facebook, instagram, youtube, twitter, share, social share, buttons, counter, pop-up, subscription, icons
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.4.2
|
7 |
+
Stable tag: 2.3.2
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
75 |
|
76 |
== Changelog ==
|
77 |
|
78 |
+
= 2.3.2 =
|
79 |
+
* Feedback mechanism disabled
|
80 |
+
* Tags reduced
|
81 |
+
|
82 |
= 2.3.1 =
|
83 |
* Added Facebook share button after/before posts
|
84 |
* G+ design issues on black background fixed
|
199 |
|
200 |
== Upgrade Notice ==
|
201 |
|
202 |
+
= 2.3.2 =
|
203 |
* Please upgrade if you faced issues before or want to use different languages
|
ultimate_social_media_icons.php
CHANGED
@@ -6,7 +6,7 @@ Description: The best social media plugin on the market. And 100% FREE. Allows y
|
|
6 |
Author: UltimatelySocial
|
7 |
Text Domain: ultimate-social-media-plus
|
8 |
Author URI: http://ultimatelysocial.com
|
9 |
-
Version: 2.3.
|
10 |
License: GPLv2
|
11 |
*/
|
12 |
|
@@ -36,7 +36,7 @@ register_deactivation_hook(__FILE__, 'sfsi_plus_deactivate_plugin');
|
|
36 |
register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
|
37 |
|
38 |
/*Plugin version setup*/
|
39 |
-
if(!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 2.
|
40 |
{
|
41 |
add_action("init", "sfsi_plus_update_plugin");
|
42 |
}
|
@@ -642,17 +642,4 @@ function sfsi_plus_get_bloginfo($url)
|
|
642 |
}
|
643 |
return $web_url;
|
644 |
}
|
645 |
-
|
646 |
-
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), "sfsi_plus_actionLinks", -10 );
|
647 |
-
function sfsi_plus_actionLinks($links)
|
648 |
-
{
|
649 |
-
$links[] = '<a href="javascript:" id="sfsi_plus_deactivateButton">'.__( 'Deactivate with feedback', SFSI_PLUS_DOMAIN ).'</a>';
|
650 |
-
$links[] = $links["deactivate"];
|
651 |
-
$links[] = $links["edit"];
|
652 |
-
$links[] = '<a href="http://www.ultimatelysocial.com/faq" target="_blank">'.__('Have issues? Check the FAQ', SFSI_PLUS_DOMAIN ).'</a>';
|
653 |
-
|
654 |
-
unset($links['deactivate']);
|
655 |
-
unset($links['edit']);
|
656 |
-
return $links;
|
657 |
-
}
|
658 |
?>
|
6 |
Author: UltimatelySocial
|
7 |
Text Domain: ultimate-social-media-plus
|
8 |
Author URI: http://ultimatelysocial.com
|
9 |
+
Version: 2.3.2
|
10 |
License: GPLv2
|
11 |
*/
|
12 |
|
36 |
register_uninstall_hook(__FILE__, 'sfsi_plus_Unistall_plugin');
|
37 |
|
38 |
/*Plugin version setup*/
|
39 |
+
if(!get_option('sfsi_plus_pluginVersion') || get_option('sfsi_plus_pluginVersion') < 2.32)
|
40 |
{
|
41 |
add_action("init", "sfsi_plus_update_plugin");
|
42 |
}
|
642 |
}
|
643 |
return $web_url;
|
644 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
645 |
?>
|