Version Description
- August 28, 2013 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
- Stable Release
- Security Improvements
- Bug Fixes
Download this release
Release Info
Developer | Acurax |
Plugin | Social Media Flying Icons | Floating Social Media Icon |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3 to 1.3.1
- acurax-social-icon.php +1 -1
- function.php +14 -1
- readme.txt +17 -5
- save_order.php +0 -15
- social-icon.php +4 -4
acurax-social-icon.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Floating Social Media Icon
|
|
4 |
Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
|
5 |
Description: An easy to use plugin to show social media icons which floats on your browsers right bottom, which links to your social media profiles, You have option in plugin settings to configure social media profile urls and also can select icon style,order and size.
|
6 |
Author: Acurax
|
7 |
-
Version: 1.3
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
4 |
Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
|
5 |
Description: An easy to use plugin to show social media icons which floats on your browsers right bottom, which links to your social media profiles, You have option in plugin settings to configure social media profile urls and also can select icon style,order and size.
|
6 |
Author: Acurax
|
7 |
+
Version: 1.3.1
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
function.php
CHANGED
@@ -503,7 +503,7 @@ function acx_fsmi_si_pluign_finish_version_update()
|
|
503 |
</div>';
|
504 |
}
|
505 |
$acx_fsmi_si_current_version = get_option('acx_fsmi_si_current_version');
|
506 |
-
if($acx_fsmi_si_current_version != '1.3') // Current Version
|
507 |
{
|
508 |
if (get_option('social_icon_array_order') != "")
|
509 |
{
|
@@ -952,4 +952,17 @@ $ad_2='<div id="ad_fsmi_2"> <a href="http://clients.acurax.com/floating-socialme
|
|
952 |
<a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_fsmi_2_button_order_link"></div></a></div> <!-- ad_fsmi_2_button_order --> ';
|
953 |
if($ad=="" || $ad == 2) { echo $ad_2; } else if ($ad == 1) { echo $ad_1; } else { echo $ad_2; }
|
954 |
} // Updated
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
955 |
?>
|
503 |
</div>';
|
504 |
}
|
505 |
$acx_fsmi_si_current_version = get_option('acx_fsmi_si_current_version');
|
506 |
+
if($acx_fsmi_si_current_version != '1.3.1') // Current Version
|
507 |
{
|
508 |
if (get_option('social_icon_array_order') != "")
|
509 |
{
|
952 |
<a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_fsmi_2_button_order_link"></div></a></div> <!-- ad_fsmi_2_button_order --> ';
|
953 |
if($ad=="" || $ad == 2) { echo $ad_2; } else if ($ad == 1) { echo $ad_1; } else { echo $ad_2; }
|
954 |
} // Updated
|
955 |
+
function acx_fsmi_saveorder_callback()
|
956 |
+
{
|
957 |
+
global $wpdb;
|
958 |
+
$social_icon_array_order = $_POST['recordsArray'];
|
959 |
+
if (current_user_can('manage_options')) {
|
960 |
+
$social_icon_array_order = serialize($social_icon_array_order);
|
961 |
+
update_option('social_icon_array_order', $social_icon_array_order);
|
962 |
+
echo "<div id='acurax_notice' align='center' style='width: 420px; font-family: arial; font-weight: normal; font-size: 22px;'>";
|
963 |
+
echo "Social Media Icon's Order Saved";
|
964 |
+
echo "</div><br>";
|
965 |
+
}
|
966 |
+
die(); // this is required to return a proper result
|
967 |
+
} add_action('wp_ajax_acx_fsmi_saveorder', 'acx_fsmi_saveorder_callback');
|
968 |
?>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:http://www.acurax.com/products/floating-social-media-icon-plugin-wor
|
|
4 |
|
5 |
Tags: social media,social,social media widget,social media icon,socialmedia,pinterest,social icon,social floating icon,social profiles,floating social media button,twitter facebook,social media button,google plus,google+
|
6 |
Requires at least: 2.8
|
7 |
-
Tested up to: 3.6
|
8 |
Stable tag: trunk
|
9 |
|
10 |
Easy 2 Use Plugin 2 Show SocialMedia Icons That Floats,Can Configure Social Icon Design,Order & Size at Plugin Settings, Suport Widget & Shortcode
|
@@ -212,14 +212,20 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
|
|
212 |
|
213 |
== Upgrade Notice ==
|
214 |
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
= 1.3 =
|
216 |
-
* June 26,
|
217 |
* Stable Release
|
218 |
* Improved UI
|
219 |
* Improved Programming Structure
|
220 |
|
221 |
= 1.2 =
|
222 |
-
* February 20,
|
223 |
* Added Option to disable highlighting menu on admin area
|
224 |
* Added Option to disable highlighting plugin on plugin list
|
225 |
* Improved CSS Styling
|
@@ -300,14 +306,20 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
|
|
300 |
|
301 |
== Changelog ==
|
302 |
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
= 1.3 =
|
304 |
-
* June 26,
|
305 |
* Stable Release
|
306 |
* Improved UI
|
307 |
* Improved Programming Structure
|
308 |
|
309 |
= 1.2 =
|
310 |
-
* February 20,
|
311 |
* Added Option to disable highlighting menu on admin area
|
312 |
* Added Option to disable highlighting plugin on plugin list
|
313 |
* Improved CSS Styling
|
4 |
|
5 |
Tags: social media,social,social media widget,social media icon,socialmedia,pinterest,social icon,social floating icon,social profiles,floating social media button,twitter facebook,social media button,google plus,google+
|
6 |
Requires at least: 2.8
|
7 |
+
Tested up to: 3.6.1
|
8 |
Stable tag: trunk
|
9 |
|
10 |
Easy 2 Use Plugin 2 Show SocialMedia Icons That Floats,Can Configure Social Icon Design,Order & Size at Plugin Settings, Suport Widget & Shortcode
|
212 |
|
213 |
== Upgrade Notice ==
|
214 |
|
215 |
+
= 1.3.1 =
|
216 |
+
* August 28, 2013 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
217 |
+
* Stable Release
|
218 |
+
* Security Improvements
|
219 |
+
* Bug Fixes
|
220 |
+
|
221 |
= 1.3 =
|
222 |
+
* June 26, 2013 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
223 |
* Stable Release
|
224 |
* Improved UI
|
225 |
* Improved Programming Structure
|
226 |
|
227 |
= 1.2 =
|
228 |
+
* February 20, 2013 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
229 |
* Added Option to disable highlighting menu on admin area
|
230 |
* Added Option to disable highlighting plugin on plugin list
|
231 |
* Improved CSS Styling
|
306 |
|
307 |
== Changelog ==
|
308 |
|
309 |
+
= 1.3.1 =
|
310 |
+
* August 28, 2013 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
311 |
+
* Stable Release
|
312 |
+
* Security Improvements
|
313 |
+
* Bug Fixes
|
314 |
+
|
315 |
= 1.3 =
|
316 |
+
* June 26, 2013 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
317 |
* Stable Release
|
318 |
* Improved UI
|
319 |
* Improved Programming Structure
|
320 |
|
321 |
= 1.2 =
|
322 |
+
* February 20, 2013 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
323 |
* Added Option to disable highlighting menu on admin area
|
324 |
* Added Option to disable highlighting plugin on plugin list
|
325 |
* Improved CSS Styling
|
save_order.php
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
require( dirname( __FILE__ ) . '../../../../wp-config.php' );
|
3 |
-
$action = mysql_real_escape_string($_POST['action']);
|
4 |
-
$social_icon_array_order = $_POST['recordsArray'];
|
5 |
-
if (current_user_can('manage_options')) {
|
6 |
-
if ($action == "updateRecordsListings")
|
7 |
-
{
|
8 |
-
$social_icon_array_order = serialize($social_icon_array_order);
|
9 |
-
update_option('social_icon_array_order', $social_icon_array_order);
|
10 |
-
echo "<div id='acurax_notice' align='center' style='width: 420px; font-family: arial; font-weight: normal; font-size: 22px;'>";
|
11 |
-
echo "Social Media Icon's Order Saved";
|
12 |
-
echo "</div><br>";
|
13 |
-
}
|
14 |
-
}
|
15 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
social-icon.php
CHANGED
@@ -90,7 +90,7 @@ update_option('acx_si_installed_date', $acx_si_installed_date);
|
|
90 |
$social_icon_array_order = array(0,1,2,3,4,5,6);
|
91 |
$social_icon_array_order = serialize($social_icon_array_order);
|
92 |
update_option('social_icon_array_order', $social_icon_array_order);
|
93 |
-
$acx_fsmi_si_current_version = "1.3"; // Current Version
|
94 |
update_option('acx_fsmi_si_current_version', $acx_fsmi_si_current_version);
|
95 |
} else
|
96 |
{
|
@@ -125,8 +125,8 @@ update_option('acx_si_installed_date', $acx_si_installed_date);
|
|
125 |
{
|
126 |
opacity: 0.5, cursor: 'move', update: function()
|
127 |
{
|
128 |
-
var order = jQuery(this).sortable("serialize") + '&action=
|
129 |
-
jQuery.post(
|
130 |
{
|
131 |
jQuery("#contentRight").html(theResponse);
|
132 |
});
|
@@ -438,7 +438,7 @@ Please do a favour by enabling backlink to our site. <a href="admin.php?page=Acu
|
|
438 |
<?php if($_GET["status"] == "updated") { ?>
|
439 |
<div style="display: block; background-color: rgb(255, 255, 224); padding: 10px; border: 1px solid rgb(230, 219, 85); font-family: arial; font-size: 13px; font-weight: bold; text-align: center; border-radius: 10px 10px 10px 10px;">Acurax Floating Social Media Icon Update Successfully Completed - Thank You</div>
|
440 |
<?php
|
441 |
-
$acx_fsmi_si_current_version = "1.3"; // Current Version
|
442 |
update_option('acx_fsmi_si_current_version', $acx_fsmi_si_current_version);
|
443 |
} ?>
|
444 |
<hr/>
|
90 |
$social_icon_array_order = array(0,1,2,3,4,5,6);
|
91 |
$social_icon_array_order = serialize($social_icon_array_order);
|
92 |
update_option('social_icon_array_order', $social_icon_array_order);
|
93 |
+
$acx_fsmi_si_current_version = "1.3.1"; // Current Version
|
94 |
update_option('acx_fsmi_si_current_version', $acx_fsmi_si_current_version);
|
95 |
} else
|
96 |
{
|
125 |
{
|
126 |
opacity: 0.5, cursor: 'move', update: function()
|
127 |
{
|
128 |
+
var order = jQuery(this).sortable("serialize") + '&action=acx_fsmi_saveorder';
|
129 |
+
jQuery.post(ajaxurl, order, function(theResponse)
|
130 |
{
|
131 |
jQuery("#contentRight").html(theResponse);
|
132 |
});
|
438 |
<?php if($_GET["status"] == "updated") { ?>
|
439 |
<div style="display: block; background-color: rgb(255, 255, 224); padding: 10px; border: 1px solid rgb(230, 219, 85); font-family: arial; font-size: 13px; font-weight: bold; text-align: center; border-radius: 10px 10px 10px 10px;">Acurax Floating Social Media Icon Update Successfully Completed - Thank You</div>
|
440 |
<?php
|
441 |
+
$acx_fsmi_si_current_version = "1.3.1"; // Current Version
|
442 |
update_option('acx_fsmi_si_current_version', $acx_fsmi_si_current_version);
|
443 |
} ?>
|
444 |
<hr/>
|