Version Description
- December 04, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
- Added Misc settings.
- Now in Misc settings - You have option to fix icons diplaying in vertical issue.
- Added alt tags to icons.
- Fixed Missing Argument Issue.
- Added title tags to icon links.
- Graphics Improvements.
=
Download this release
Release Info
Developer | Acurax |
Plugin | Social Media Widget by Acurax |
Version | 1.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.1
- acurax-social-icon.php +8 -1
- dynamic_admin_style.css +34 -0
- function.php +293 -199
- images/fsmi_lp_sprite.png +0 -0
- images/social_media.jpg +0 -0
- premium.php +0 -5
- readme.txt +24 -2
- save_order.php +2 -2
- smw-misc.php +100 -0
- social-icon.php +30 -7
- style_admin.css +153 -23
acurax-social-icon.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Acurax Social Media Widget
|
|
4 |
Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
|
5 |
Description: A Simple Wordpress Plugin Which Allow You To Add Widget Which Links Social Media Icons to Your Social Media Profiles Twitter,Facebook,Pinterest,Youtube,Rss Feed,Linkedin,google plus. You can define icon style size for each widget.
|
6 |
Author: Acurax
|
7 |
-
Version: 1.
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -74,12 +74,19 @@ function acx_social_widget_icon_premium()
|
|
74 |
include('premium.php');
|
75 |
}
|
76 |
|
|
|
|
|
|
|
|
|
|
|
77 |
function acx_social_widget_icon_admin_actions()
|
78 |
{
|
79 |
add_menu_page( 'Acx Social Media Widget Configuration', 'Acx Social Media Widget Settings', 8, 'Acurax-Social-Widget-Settings','acx_social_widget_icon_admin',plugin_dir_url( __FILE__ ).'/images/admin.ico' ); // 8 for admin
|
80 |
|
81 |
add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Icon Premium', 'Premium', 8, 'Acurax-Social-Widget-Premium' ,'acx_social_widget_icon_premium');
|
82 |
|
|
|
|
|
83 |
add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Widget Help and Support', 'Help', 8, 'Acurax-Social-Widget-Help' ,'acx_social_widget_icon_help');
|
84 |
}
|
85 |
|
4 |
Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
|
5 |
Description: A Simple Wordpress Plugin Which Allow You To Add Widget Which Links Social Media Icons to Your Social Media Profiles Twitter,Facebook,Pinterest,Youtube,Rss Feed,Linkedin,google plus. You can define icon style size for each widget.
|
6 |
Author: Acurax
|
7 |
+
Version: 1.1
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
74 |
include('premium.php');
|
75 |
}
|
76 |
|
77 |
+
function acx_social_widget_icon_misc()
|
78 |
+
{
|
79 |
+
include('smw-misc.php');
|
80 |
+
}
|
81 |
+
|
82 |
function acx_social_widget_icon_admin_actions()
|
83 |
{
|
84 |
add_menu_page( 'Acx Social Media Widget Configuration', 'Acx Social Media Widget Settings', 8, 'Acurax-Social-Widget-Settings','acx_social_widget_icon_admin',plugin_dir_url( __FILE__ ).'/images/admin.ico' ); // 8 for admin
|
85 |
|
86 |
add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Icon Premium', 'Premium', 8, 'Acurax-Social-Widget-Premium' ,'acx_social_widget_icon_premium');
|
87 |
|
88 |
+
add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Icon Misc Settings', 'Misc', 8, 'Acurax-Social-Widget-Misc' ,'acx_social_widget_icon_misc');
|
89 |
+
|
90 |
add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Widget Help and Support', 'Help', 8, 'Acurax-Social-Widget-Help' ,'acx_social_widget_icon_help');
|
91 |
}
|
92 |
|
dynamic_admin_style.css
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#toplevel_page_Acurax-Social-Widget-Settings
|
2 |
+
{
|
3 |
+
background: none repeat scroll 0 0 LimeGreen;
|
4 |
+
color: white;
|
5 |
+
}
|
6 |
+
#toplevel_page_Acurax-Social-Widget-Settings li a
|
7 |
+
{
|
8 |
+
color: #21759B;
|
9 |
+
text-align: left;
|
10 |
+
}
|
11 |
+
.folded #toplevel_page_Acurax-Social-Widget-Settings .wp-submenu-head
|
12 |
+
{
|
13 |
+
color: #21759B;
|
14 |
+
}
|
15 |
+
.folded #toplevel_page_Acurax-Social-Widget-Settings img
|
16 |
+
{
|
17 |
+
margin-left: -1px !important;
|
18 |
+
margin-top: 1px !important;
|
19 |
+
}
|
20 |
+
#toplevel_page_Acurax-Social-Widget-Settings img
|
21 |
+
{
|
22 |
+
background: none repeat scroll 0 0 white;
|
23 |
+
border-radius: 4px 4px 4px 4px;
|
24 |
+
margin-left: 4px;
|
25 |
+
margin-top: 11px;
|
26 |
+
opacity: 1 !important;
|
27 |
+
padding: 4px !important;
|
28 |
+
}
|
29 |
+
#toplevel_page_Acurax-Social-Widget-Settings a
|
30 |
+
{
|
31 |
+
color: InfoText;
|
32 |
+
font-size: 12px !important;
|
33 |
+
text-align: center;
|
34 |
+
}
|
function.php
CHANGED
@@ -13,6 +13,8 @@ $acx_widget_si_gplus = get_option('acx_widget_si_gplus');
|
|
13 |
$acx_widget_si_pinterest = get_option('acx_widget_si_pinterest');
|
14 |
$acx_widget_si_feed = get_option('acx_widget_si_feed');
|
15 |
$acx_widget_si_icon_size = get_option('acx_widget_si_icon_size');
|
|
|
|
|
16 |
// *****************************************************
|
17 |
function enqueue_acx_widget_si_style()
|
18 |
{
|
@@ -30,7 +32,7 @@ function acx_widget_option_value_check($option_name,$yes,$no)
|
|
30 |
{ $acx_widget_si_option_set = get_option($option_name);
|
31 |
if ($acx_widget_si_option_set != "") { echo $yes; } else { echo $no; }
|
32 |
}
|
33 |
-
function acurax_si_widget_simple($theme)
|
34 |
{
|
35 |
|
36 |
// Getting Globals *****************************
|
@@ -41,38 +43,38 @@ function acurax_si_widget_simple($theme)
|
|
41 |
//******** MAKING EACH BUTTON LINKS ********************
|
42 |
if ($acx_widget_si_twitter == "") { $twitter_link = ""; } else
|
43 |
{
|
44 |
-
$twitter_link = "<a href='http://www.twitter.com/". $acx_widget_si_twitter ."' target='_blank'>" . "<img src=" .
|
45 |
-
plugins_url('images/themes/'. $acx_widget_si_touse_theme .'/twitter.png', __FILE__) . " border='0'></a>";
|
46 |
}
|
47 |
if ($acx_widget_si_facebook == "") { $facebook_link = ""; } else
|
48 |
{
|
49 |
-
$facebook_link = "<a href='". $acx_widget_si_facebook ."' target='_blank'>" . "<img src=" . plugins_url('images/themes/'
|
50 |
-
. $acx_widget_si_touse_theme .'/facebook.png', __FILE__) . " border='0'></a>";
|
51 |
}
|
52 |
if ($acx_widget_si_gplus == "") { $gplus_link = ""; } else
|
53 |
{
|
54 |
-
$gplus_link = "<a href='". $acx_widget_si_gplus ."' target='_blank'>" . "<img src=" . plugins_url('images/themes/'.
|
55 |
-
$acx_widget_si_touse_theme .'/googleplus.png', __FILE__) . " border='0'></a>";
|
56 |
}
|
57 |
if ($acx_widget_si_pinterest == "") { $pinterest_link = ""; } else
|
58 |
{
|
59 |
-
$pinterest_link = "<a href='". $acx_widget_si_pinterest ."' target='_blank'>" . "<img src=" . plugins_url(
|
60 |
-
'images/themes/'. $acx_widget_si_touse_theme .'/pinterest.png', __FILE__) . " border='0'></a>";
|
61 |
}
|
62 |
if ($acx_widget_si_youtube == "") { $youtube_link = ""; } else
|
63 |
{
|
64 |
-
$youtube_link = "<a href='". $acx_widget_si_youtube ."' target='_blank'>" . "<img src=" . plugins_url('images/themes/'.
|
65 |
-
$acx_widget_si_touse_theme .'/youtube.png', __FILE__) . " border='0'></a>";
|
66 |
}
|
67 |
if ($acx_widget_si_linkedin == "") { $linkedin_link = ""; } else
|
68 |
{
|
69 |
-
$linkedin_link = "<a href='". $acx_widget_si_linkedin ."' target='_blank'>" . "<img src=" . plugins_url('images/themes/'
|
70 |
-
. $acx_widget_si_touse_theme .'/linkedin.png', __FILE__) . " border='0'></a>";
|
71 |
}
|
72 |
if ($acx_widget_si_feed == "") { $feed_link = ""; } else
|
73 |
{
|
74 |
-
$feed_link = "<a href='". $acx_widget_si_feed ."' target='_blank'>" . "<img src=" . plugins_url('images/themes/'
|
75 |
-
. $acx_widget_si_touse_theme .'/feed.png', __FILE__) . " border='0'></a>";
|
76 |
}
|
77 |
$social_widget_icon_array_order = get_option('social_widget_icon_array_order');
|
78 |
$social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
|
@@ -138,19 +140,31 @@ function acurax_widget_icons()
|
|
138 |
function extra_style_acx_widget_icon()
|
139 |
{
|
140 |
global $acx_widget_si_icon_size;
|
|
|
141 |
echo "\n\n\n<!-- Starting Styles For Social Media Icon From Acurax International www.acurax.com -->\n<style type='text/css'>\n";
|
142 |
echo "#acx_social_widget img \n{\n";
|
143 |
echo "width: " . $acx_widget_si_icon_size . "px; \n}\n";
|
144 |
echo "#acx_social_widget \n{\n";
|
145 |
echo "min-width:0px; \n";
|
146 |
-
echo "position: static; \n}\n";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
echo "</style>\n<!-- Ending Styles For Social Media Icon From Acurax International www.acurax.com -->\n\n\n\n";
|
148 |
} add_action('admin_head', 'extra_style_acx_widget_icon'); // ADMIN
|
149 |
add_action('wp_head', 'extra_style_acx_widget_icon'); // PUBLIC
|
150 |
|
151 |
function acx_widget_si_admin_style() // Adding Style For Admin
|
152 |
{
|
|
|
153 |
echo '<link rel="stylesheet" type="text/css" href="' .plugins_url('style_admin.css', __FILE__). '">';
|
|
|
|
|
|
|
154 |
} add_action('admin_head', 'acx_widget_si_admin_style'); // ADMIN
|
155 |
|
156 |
|
@@ -175,7 +189,7 @@ function DISPLAY_WIDGET_acurax_widget_icons_SC($atts)
|
|
175 |
echo ".scid-" . $acx_widget_si_sc_id . " img \n{\n";
|
176 |
echo "width:" . $size . "px !important; \n}\n";
|
177 |
echo "</style>";
|
178 |
-
echo "<div id='short_code_si_icon' align='center' class='scid-" . $acx_widget_si_sc_id . "'>";
|
179 |
acurax_si_widget_simple($theme);
|
180 |
echo "</div>";
|
181 |
$content = ob_get_contents();
|
@@ -211,6 +225,23 @@ if ($social_widget_icon_array_count < $total_arrays)
|
|
211 |
add_action('admin_notices', 'acx_widget_si_pluign_upgrade_not_finished',1);
|
212 |
}
|
213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
// wp-admin Notices >> Plugin not configured
|
215 |
function acx_widget_si_pluign_not_configured()
|
216 |
{
|
@@ -232,9 +263,9 @@ if ($acx_widget_si_twitter == "" && $acx_widget_si_facebook == "" && $acx_widget
|
|
232 |
function acx_widget_si_pluign_promotion()
|
233 |
{
|
234 |
echo '<div id="acx_td" class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
|
235 |
-
<p>It looks like you have been enjoying using Acurax Social Media Widget plugin from <a href="http://www.acurax.com?utm_source=plugin&utm_medium=thirtyday&utm_campaign=thirtyday" title="Acurax Web Designing Company" target="_blank">Acurax</a> for atleast 30 days.Would you consider upgrading to <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=thirtyday&utm_campaign=widget_plugin" title="Premium Acurax Social Media Widget" target="_blank">premium version</a> to enjoy more features and help support continued development of the plugin? -
|
236 |
<p>
|
237 |
-
<a href="http://wordpress.org/
|
238 |
<a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=thirtyday&utm_campaign=widget_plugin" class="button" style="color:black;text-decoration:none;padding:5px;margin-right:4px;" target="_blank">Order Premium Version</a>
|
239 |
<a href="admin.php?page=Acurax-Social-Widget-Premium&td=hide" class="button" style="color:black;text-decoration:none;padding:5px;margin-right:4px;margin-left:20px;">Don\'t Show This Again</a>
|
240 |
</p>
|
@@ -290,7 +321,7 @@ class acx_social_widget_icons_Widget extends WP_Widget
|
|
290 |
echo "." . $this->get_field_id('widget') . " img \n{\n";
|
291 |
echo "width:" . $icon_size . "px; \n } \n";
|
292 |
echo "</style>";
|
293 |
-
echo "<div id='acurax_si_widget_simple' class='" . $this->get_field_id('widget') . "'";
|
294 |
if($icon_align != "") { echo " align='" . $icon_align . "'>"; } else { echo " align='center'>"; }
|
295 |
acurax_si_widget_simple($icon_theme);
|
296 |
echo "</div>";
|
@@ -383,187 +414,250 @@ function socialicons_widget_comparison($ad=2)
|
|
383 |
{
|
384 |
$ad_1 = '
|
385 |
</hr>
|
386 |
-
<div align="center">
|
387 |
-
<br>
|
388 |
<p><b>This Plugin is the basic widget version of floating social media icon wordpress plugin. This plugin only support the icon pack and the widget. Premium Version of This plugin includes all the features of floating social media icon and a lot more. Premium version is same as the premium version of floating social media icon wordpress plugin.</b></p>
|
389 |
-
<
|
390 |
-
<
|
391 |
-
|
392 |
-
<
|
393 |
-
<
|
394 |
-
<
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
<
|
399 |
-
<
|
400 |
-
|
401 |
-
</
|
402 |
-
|
403 |
-
<
|
404 |
-
<
|
405 |
-
<
|
406 |
-
<
|
407 |
-
</
|
408 |
-
|
409 |
-
<
|
410 |
-
<
|
411 |
-
<
|
412 |
-
<
|
413 |
-
</
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
<
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
<
|
423 |
-
<
|
424 |
-
<
|
425 |
-
</
|
426 |
-
|
427 |
-
|
428 |
-
<
|
429 |
-
<
|
430 |
-
|
431 |
-
</
|
432 |
-
|
433 |
-
<
|
434 |
-
<
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
<
|
440 |
-
|
441 |
-
|
442 |
-
<
|
443 |
-
</
|
444 |
-
|
445 |
-
<
|
446 |
-
<
|
447 |
-
<
|
448 |
-
|
449 |
-
</
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
<
|
454 |
-
<
|
455 |
-
|
456 |
-
|
457 |
-
<
|
458 |
-
<
|
459 |
-
<
|
460 |
-
|
461 |
-
</
|
462 |
-
|
463 |
-
<
|
464 |
-
<
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
<
|
470 |
-
<
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
<
|
476 |
-
|
477 |
-
|
478 |
-
<
|
479 |
-
</
|
480 |
-
|
481 |
-
<
|
482 |
-
<
|
483 |
-
<
|
484 |
-
<
|
485 |
-
</
|
486 |
-
|
487 |
-
|
488 |
-
<
|
489 |
-
<
|
490 |
-
|
491 |
-
</
|
492 |
-
|
493 |
-
<
|
494 |
-
<
|
495 |
-
<
|
496 |
-
<
|
497 |
-
</
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
<
|
506 |
-
|
507 |
-
|
508 |
-
<
|
509 |
-
</
|
510 |
-
|
511 |
-
<
|
512 |
-
<
|
513 |
-
<
|
514 |
-
<
|
515 |
-
</
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
<
|
520 |
-
<
|
521 |
-
|
522 |
-
|
523 |
-
<
|
524 |
-
<
|
525 |
-
<
|
526 |
-
<
|
527 |
-
|
528 |
-
|
529 |
-
<
|
530 |
-
<
|
531 |
-
<
|
532 |
-
<
|
533 |
-
|
534 |
-
|
535 |
-
<
|
536 |
-
<
|
537 |
-
<
|
538 |
-
<
|
539 |
-
|
540 |
-
|
541 |
-
<
|
542 |
-
<
|
543 |
-
<
|
544 |
-
<
|
545 |
-
|
546 |
-
|
547 |
-
<
|
548 |
-
<
|
549 |
-
<
|
550 |
-
<
|
551 |
-
|
552 |
-
|
553 |
-
<
|
554 |
-
<
|
555 |
-
<
|
556 |
-
<
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
<div
|
561 |
-
<
|
562 |
-
<
|
563 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
<div id="ad_fsmi_2_button_order">
|
565 |
-
<a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=
|
566 |
-
if($ad=="") { echo $ad_2; } else if ($ad == 1) { echo $ad_1; } else
|
567 |
}
|
568 |
|
569 |
?>
|
13 |
$acx_widget_si_pinterest = get_option('acx_widget_si_pinterest');
|
14 |
$acx_widget_si_feed = get_option('acx_widget_si_feed');
|
15 |
$acx_widget_si_icon_size = get_option('acx_widget_si_icon_size');
|
16 |
+
$acx_si_smw_menu_highlight = get_option('acx_si_smw_menu_highlight');
|
17 |
+
$acx_si_smw_float_fix = get_option('acx_si_smw_float_fix');
|
18 |
// *****************************************************
|
19 |
function enqueue_acx_widget_si_style()
|
20 |
{
|
32 |
{ $acx_widget_si_option_set = get_option($option_name);
|
33 |
if ($acx_widget_si_option_set != "") { echo $yes; } else { echo $no; }
|
34 |
}
|
35 |
+
function acurax_si_widget_simple($theme = "")
|
36 |
{
|
37 |
|
38 |
// Getting Globals *****************************
|
43 |
//******** MAKING EACH BUTTON LINKS ********************
|
44 |
if ($acx_widget_si_twitter == "") { $twitter_link = ""; } else
|
45 |
{
|
46 |
+
$twitter_link = "<a href='http://www.twitter.com/". $acx_widget_si_twitter ."' target='_blank' title='Visit Us On Twitter'>" . "<img src=" .
|
47 |
+
plugins_url('images/themes/'. $acx_widget_si_touse_theme .'/twitter.png', __FILE__) . " border='0' alt='Visit Us On Twitter'></a>";
|
48 |
}
|
49 |
if ($acx_widget_si_facebook == "") { $facebook_link = ""; } else
|
50 |
{
|
51 |
+
$facebook_link = "<a href='". $acx_widget_si_facebook ."' target='_blank' title='Visit Us On Facebook'>" . "<img src=" . plugins_url('images/themes/'
|
52 |
+
. $acx_widget_si_touse_theme .'/facebook.png', __FILE__) . " border='0' alt='Visit Us On Facebook'></a>";
|
53 |
}
|
54 |
if ($acx_widget_si_gplus == "") { $gplus_link = ""; } else
|
55 |
{
|
56 |
+
$gplus_link = "<a href='". $acx_widget_si_gplus ."' target='_blank' title='Visit Us On GooglePlus'>" . "<img src=" . plugins_url('images/themes/'.
|
57 |
+
$acx_widget_si_touse_theme .'/googleplus.png', __FILE__) . " border='0' alt='Visit Us On GooglePlus'></a>";
|
58 |
}
|
59 |
if ($acx_widget_si_pinterest == "") { $pinterest_link = ""; } else
|
60 |
{
|
61 |
+
$pinterest_link = "<a href='". $acx_widget_si_pinterest ."' target='_blank' title='Visit Us On Pinterest'>" . "<img src=" . plugins_url(
|
62 |
+
'images/themes/'. $acx_widget_si_touse_theme .'/pinterest.png', __FILE__) . " border='0' alt='Visit Us On Pinterest'></a>";
|
63 |
}
|
64 |
if ($acx_widget_si_youtube == "") { $youtube_link = ""; } else
|
65 |
{
|
66 |
+
$youtube_link = "<a href='". $acx_widget_si_youtube ."' target='_blank' title='Visit Us On Youtube'>" . "<img src=" . plugins_url('images/themes/'.
|
67 |
+
$acx_widget_si_touse_theme .'/youtube.png', __FILE__) . " border='0' alt='Visit Us On Youtube'></a>";
|
68 |
}
|
69 |
if ($acx_widget_si_linkedin == "") { $linkedin_link = ""; } else
|
70 |
{
|
71 |
+
$linkedin_link = "<a href='". $acx_widget_si_linkedin ."' target='_blank' title='Visit Us On Linkedin'>" . "<img src=" . plugins_url('images/themes/'
|
72 |
+
. $acx_widget_si_touse_theme .'/linkedin.png', __FILE__) . " border='0' alt='Visit Us On Linkedin'></a>";
|
73 |
}
|
74 |
if ($acx_widget_si_feed == "") { $feed_link = ""; } else
|
75 |
{
|
76 |
+
$feed_link = "<a href='". $acx_widget_si_feed ."' target='_blank' title='Check Our Feed'>" . "<img src=" . plugins_url('images/themes/'
|
77 |
+
. $acx_widget_si_touse_theme .'/feed.png', __FILE__) . " border='0' alt='Check Our Feed'></a>";
|
78 |
}
|
79 |
$social_widget_icon_array_order = get_option('social_widget_icon_array_order');
|
80 |
$social_widget_icon_array_order = unserialize($social_widget_icon_array_order);
|
140 |
function extra_style_acx_widget_icon()
|
141 |
{
|
142 |
global $acx_widget_si_icon_size;
|
143 |
+
global $acx_si_smw_float_fix;
|
144 |
echo "\n\n\n<!-- Starting Styles For Social Media Icon From Acurax International www.acurax.com -->\n<style type='text/css'>\n";
|
145 |
echo "#acx_social_widget img \n{\n";
|
146 |
echo "width: " . $acx_widget_si_icon_size . "px; \n}\n";
|
147 |
echo "#acx_social_widget \n{\n";
|
148 |
echo "min-width:0px; \n";
|
149 |
+
echo "position: static; \n}\n";
|
150 |
+
|
151 |
+
if ($acx_si_smw_float_fix == "yes")
|
152 |
+
{
|
153 |
+
echo ".acx_smw_float_fix a \n{\n";
|
154 |
+
echo "display:inline-block; \n}\n";
|
155 |
+
}
|
156 |
+
|
157 |
echo "</style>\n<!-- Ending Styles For Social Media Icon From Acurax International www.acurax.com -->\n\n\n\n";
|
158 |
} add_action('admin_head', 'extra_style_acx_widget_icon'); // ADMIN
|
159 |
add_action('wp_head', 'extra_style_acx_widget_icon'); // PUBLIC
|
160 |
|
161 |
function acx_widget_si_admin_style() // Adding Style For Admin
|
162 |
{
|
163 |
+
global $acx_si_smw_menu_highlight;
|
164 |
echo '<link rel="stylesheet" type="text/css" href="' .plugins_url('style_admin.css', __FILE__). '">';
|
165 |
+
if ($acx_si_smw_menu_highlight != "no") {
|
166 |
+
echo '<link rel="stylesheet" type="text/css" href="' .plugins_url('dynamic_admin_style.css', __FILE__). '">';
|
167 |
+
}
|
168 |
} add_action('admin_head', 'acx_widget_si_admin_style'); // ADMIN
|
169 |
|
170 |
|
189 |
echo ".scid-" . $acx_widget_si_sc_id . " img \n{\n";
|
190 |
echo "width:" . $size . "px !important; \n}\n";
|
191 |
echo "</style>";
|
192 |
+
echo "<div id='short_code_si_icon' align='center' class='acx_smw_float_fix scid-" . $acx_widget_si_sc_id . "'>";
|
193 |
acurax_si_widget_simple($theme);
|
194 |
echo "</div>";
|
195 |
$content = ob_get_contents();
|
225 |
add_action('admin_notices', 'acx_widget_si_pluign_upgrade_not_finished',1);
|
226 |
}
|
227 |
|
228 |
+
|
229 |
+
function acx_widget_si_pluign_finish_version_update()
|
230 |
+
{
|
231 |
+
echo '<div id="message" class="updated">
|
232 |
+
<p><b>Thanks for updating Acurax Social Media Widget plugin... You need to visit <a href="admin.php?page=Acurax-Social-Widget-Settings&status=updated#updated">Plugin\'s Settings Page</a> to Complete the Updation Process - <a href="admin.php?page=Acurax-Social-Widget-Settings&status=updated#updated">Click Here Visit Social Icon Plugin Settings</a></b></p>
|
233 |
+
</div>';
|
234 |
+
}
|
235 |
+
$acx_widget_si_current_version = get_option('acx_widget_si_current_version');
|
236 |
+
if($acx_widget_si_current_version != '1.1') // Current Version
|
237 |
+
{
|
238 |
+
if (get_option('social_widget_icon_array_order') != "")
|
239 |
+
{
|
240 |
+
add_action('admin_notices', 'acx_widget_si_pluign_finish_version_update',1);
|
241 |
+
}
|
242 |
+
}
|
243 |
+
|
244 |
+
|
245 |
// wp-admin Notices >> Plugin not configured
|
246 |
function acx_widget_si_pluign_not_configured()
|
247 |
{
|
263 |
function acx_widget_si_pluign_promotion()
|
264 |
{
|
265 |
echo '<div id="acx_td" class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
|
266 |
+
<p>It looks like you have been enjoying using Acurax Social Media Widget plugin from <a href="http://www.acurax.com?utm_source=plugin&utm_medium=thirtyday&utm_campaign=thirtyday" title="Acurax Web Designing Company" target="_blank">Acurax</a> for atleast 30 days.Would you consider upgrading to <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=thirtyday&utm_campaign=widget_plugin" title="Premium Acurax Social Media Widget" target="_blank">premium version</a> to enjoy more features and help support continued development of the plugin? - Spreading the world about this plugin. Thank you for using the plugin</p>
|
267 |
<p>
|
268 |
+
<a href="http://wordpress.org/support/view/plugin-reviews/acurax-social-media-widget/" class="button" style="color:black;text-decoration:none;padding:5px;margin-right:4px;" target="_blank">Rate it 5★\'s on wordpress</a>
|
269 |
<a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=thirtyday&utm_campaign=widget_plugin" class="button" style="color:black;text-decoration:none;padding:5px;margin-right:4px;" target="_blank">Order Premium Version</a>
|
270 |
<a href="admin.php?page=Acurax-Social-Widget-Premium&td=hide" class="button" style="color:black;text-decoration:none;padding:5px;margin-right:4px;margin-left:20px;">Don\'t Show This Again</a>
|
271 |
</p>
|
321 |
echo "." . $this->get_field_id('widget') . " img \n{\n";
|
322 |
echo "width:" . $icon_size . "px; \n } \n";
|
323 |
echo "</style>";
|
324 |
+
echo "<div id='acurax_si_widget_simple' class='acx_smw_float_fix " . $this->get_field_id('widget') . "'";
|
325 |
if($icon_align != "") { echo " align='" . $icon_align . "'>"; } else { echo " align='center'>"; }
|
326 |
acurax_si_widget_simple($icon_theme);
|
327 |
echo "</div>";
|
414 |
{
|
415 |
$ad_1 = '
|
416 |
</hr>
|
|
|
|
|
417 |
<p><b>This Plugin is the basic widget version of floating social media icon wordpress plugin. This plugin only support the icon pack and the widget. Premium Version of This plugin includes all the features of floating social media icon and a lot more. Premium version is same as the premium version of floating social media icon wordpress plugin.</b></p>
|
418 |
+
<a name="compare"></a>
|
419 |
+
<div id="fsmi_landing_holder">
|
420 |
+
|
421 |
+
<div id="fsmi_lp_compare">
|
422 |
+
<div class="row_1">
|
423 |
+
<div class="fsmi_lp_compare_row_1_1"></div> <!-- fsmi_lp_compare_row_1_1 -->
|
424 |
+
|
425 |
+
|
426 |
+
|
427 |
+
<div id="fsmi_lp_f_group">
|
428 |
+
<div class="left" style="padding-top: 173px;padding-bottom: 172px;">
|
429 |
+
Display
|
430 |
+
</div> <!-- left -->
|
431 |
+
<div class="right">
|
432 |
+
<div class="fsmi_lp_compare_row_1_features">More Sharp Quality Icons</div> <!-- fsmi_lp_compare_row_1_features -->
|
433 |
+
<div class="fsmi_lp_compare_row_1_features">20+ Icon Theme/Style</div> <!-- fsmi_lp_compare_row_1_features -->
|
434 |
+
<div class="fsmi_lp_compare_row_1_features">Can Choose Icon Theme/Style</div> <!-- fsmi_lp_compare_row_1_features -->
|
435 |
+
<div class="fsmi_lp_compare_row_1_features">Can Choose Icon Size</div> <!-- fsmi_lp_compare_row_1_features -->
|
436 |
+
<div class="fsmi_lp_compare_row_1_features">Automatic/Manual Integration</div> <!-- fsmi_lp_compare_row_1_features -->
|
437 |
+
<div class="fsmi_lp_compare_row_1_features">Set MouseOver text for each icon in Share Mode</div> <!-- fsmi_lp_compare_row_1_features -->
|
438 |
+
<div class="fsmi_lp_compare_row_1_features">Set MouseOver text for each icon in Profile Link Mode</div> <!-- fsmi_lp_compare_row_1_features -->
|
439 |
+
<div class="fsmi_lp_compare_row_1_features">Option to HIDE Invididual Share Icon</div> <!-- fsmi_lp_compare_row_1_features -->
|
440 |
+
<div class="fsmi_lp_compare_row_1_features highlighted">Set Floating Icons in Vertical</div> <!-- fsmi_lp_compare_row_1_features -->
|
441 |
+
<div class="fsmi_lp_compare_row_1_features highlighted">Define how many icons in 1 row</div> <!-- fsmi_lp_compare_row_1_features -->
|
442 |
+
<div class="fsmi_lp_compare_row_1_features highlighted">Add Custom Icons</div> <!-- fsmi_lp_compare_row_1_features -->
|
443 |
+
</div> <!-- right -->
|
444 |
+
</div> <!-- fsmi_lp_f_group -->
|
445 |
+
|
446 |
+
|
447 |
+
<div id="fsmi_lp_f_group">
|
448 |
+
<div class="left" style="padding-top: 23px;padding-bottom: 25px;">
|
449 |
+
Icon Function
|
450 |
+
</div> <!-- left -->
|
451 |
+
<div class="right">
|
452 |
+
<div class="fsmi_lp_compare_row_1_features">Link to Social Media Profile</div> <!-- fsmi_lp_compare_row_1_features -->
|
453 |
+
<div class="fsmi_lp_compare_row_1_features highlighted">Share On Social Media</div> <!-- fsmi_lp_compare_row_1_features -->
|
454 |
+
</div> <!-- right -->
|
455 |
+
</div> <!-- fsmi_lp_f_group -->
|
456 |
+
|
457 |
+
<div id="fsmi_lp_f_group">
|
458 |
+
<div class="left" style="padding-top: 23px;padding-bottom: 25px;">
|
459 |
+
Animation
|
460 |
+
</div> <!-- left -->
|
461 |
+
<div class="right">
|
462 |
+
<div class="fsmi_lp_compare_row_1_features">Fly Animation</div> <!-- fsmi_lp_compare_row_1_features -->
|
463 |
+
<div class="fsmi_lp_compare_row_1_features highlighted">Mouse Over Effects</div> <!-- fsmi_lp_compare_row_1_features -->
|
464 |
+
</div> <!-- right -->
|
465 |
+
</div> <!-- fsmi_lp_f_group -->
|
466 |
+
|
467 |
+
<div id="fsmi_lp_f_group">
|
468 |
+
<div class="left" style="padding-top: 65px;padding-bottom: 65px;">
|
469 |
+
Fly Animation Repeat Interval
|
470 |
+
</div> <!-- left -->
|
471 |
+
<div class="right">
|
472 |
+
<div class="fsmi_lp_compare_row_1_features">Based On Time in Seconds</div> <!-- fsmi_lp_compare_row_1_features -->
|
473 |
+
<div class="fsmi_lp_compare_row_1_features highlighted">Based On Time in Minutes</div> <!-- fsmi_lp_compare_row_1_features -->
|
474 |
+
<div class="fsmi_lp_compare_row_1_features">Based On Time in Hours</div> <!-- fsmi_lp_compare_row_1_features -->
|
475 |
+
<div class="fsmi_lp_compare_row_1_features">Based on Page Views</div> <!-- fsmi_lp_compare_row_1_features -->
|
476 |
+
<div class="fsmi_lp_compare_row_1_features">Based On Page Views and Time</div> <!-- fsmi_lp_compare_row_1_features -->
|
477 |
+
</div> <!-- right -->
|
478 |
+
</div> <!-- fsmi_lp_f_group -->
|
479 |
+
|
480 |
+
|
481 |
+
|
482 |
+
<div id="fsmi_lp_f_group">
|
483 |
+
<div class="left highlighted" style="padding-top: 24px;padding-bottom: 24px;">
|
484 |
+
Multiple Fly Animation
|
485 |
+
</div> <!-- left -->
|
486 |
+
<div class="right">
|
487 |
+
<div class="fsmi_lp_compare_row_1_features">Can Choose Fly Start Position</div> <!-- fsmi_lp_compare_row_1_features -->
|
488 |
+
<div class="fsmi_lp_compare_row_1_features">Can Choose Fly End Position</div> <!-- fsmi_lp_compare_row_1_features -->
|
489 |
+
</div> <!-- right -->
|
490 |
+
</div> <!-- fsmi_lp_f_group -->
|
491 |
+
|
492 |
+
<div id="fsmi_lp_f_group">
|
493 |
+
<div class="left" style="padding-top: 40px;padding-bottom: 41px;">
|
494 |
+
Easy to Configure
|
495 |
+
</div> <!-- left -->
|
496 |
+
<div class="right">
|
497 |
+
<div class="fsmi_lp_compare_row_1_features">Ajax Based Settings Page</div> <!-- fsmi_lp_compare_row_1_features -->
|
498 |
+
<div class="fsmi_lp_compare_row_1_features">Drag & Drop Reorder Icons</div> <!-- fsmi_lp_compare_row_1_features -->
|
499 |
+
<div class="fsmi_lp_compare_row_1_features">Easy to Configure</div> <!-- fsmi_lp_compare_row_1_features -->
|
500 |
+
</div> <!-- right -->
|
501 |
+
</div> <!-- fsmi_lp_f_group -->
|
502 |
+
|
503 |
+
<div id="fsmi_lp_f_group">
|
504 |
+
<div class="left" style="padding-top: 90px;padding-bottom: 90px;">
|
505 |
+
Widget Support
|
506 |
+
</div> <!-- left -->
|
507 |
+
<div class="right">
|
508 |
+
<div class="fsmi_lp_compare_row_1_features">Multiple Widgets</div> <!-- fsmi_lp_compare_row_1_features -->
|
509 |
+
<div class="fsmi_lp_compare_row_1_features">Seperate Icon Style/Theme For Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
510 |
+
<div class="fsmi_lp_compare_row_1_features">Seperate Icon Size For Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
511 |
+
<div class="fsmi_lp_compare_row_1_features">Set whether the icons to Link Profiles/SHARE</div> <!-- fsmi_lp_compare_row_1_features -->
|
512 |
+
<div class="fsmi_lp_compare_row_1_features highlighted">Seperate Mouse Over Multiple Animation for Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
513 |
+
<div class="fsmi_lp_compare_row_1_features">Seperate Default Opacity for Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
514 |
+
</div> <!-- right -->
|
515 |
+
</div> <!-- fsmi_lp_f_group -->
|
516 |
+
|
517 |
+
<div id="fsmi_lp_f_group">
|
518 |
+
<div class="left" style="padding-top: 90px;padding-bottom: 90px;">
|
519 |
+
Shortcode Support
|
520 |
+
</div> <!-- left -->
|
521 |
+
<div class="right">
|
522 |
+
<div class="fsmi_lp_compare_row_1_features">Multiple Instances</div> <!-- fsmi_lp_compare_row_1_features -->
|
523 |
+
<div class="fsmi_lp_compare_row_1_features">Seperate Icon Style/Theme For Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
524 |
+
<div class="fsmi_lp_compare_row_1_features highlighted">Seperate Icon Size For Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
525 |
+
<div class="fsmi_lp_compare_row_1_features">Set whether the icons to Link Profiles/SHARE</div> <!-- fsmi_lp_compare_row_1_features -->
|
526 |
+
<div class="fsmi_lp_compare_row_1_features">Seperate Mouse Over Multiple Animation for Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
527 |
+
<div class="fsmi_lp_compare_row_1_features">Seperate Default Opacity for Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
528 |
+
</div> <!-- right -->
|
529 |
+
</div> <!-- fsmi_lp_f_group -->
|
530 |
+
|
531 |
+
|
532 |
+
|
533 |
+
<div id="fsmi_lp_f_group">
|
534 |
+
<div class="left" style="padding-top: 106px;padding-bottom: 107px;border-bottom:0px;">
|
535 |
+
PHP Code Support
|
536 |
+
</div> <!-- left -->
|
537 |
+
<div class="right">
|
538 |
+
<div class="fsmi_lp_compare_row_1_features">Multiple Instances</div> <!-- fsmi_lp_compare_row_1_features -->
|
539 |
+
<div class="fsmi_lp_compare_row_1_features">Use Outside Loop</div> <!-- fsmi_lp_compare_row_1_features -->
|
540 |
+
<div class="fsmi_lp_compare_row_1_features">Seperate Icon Style/Theme For Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
541 |
+
<div class="fsmi_lp_compare_row_1_features">Seperate Icon Size For Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
542 |
+
<div class="fsmi_lp_compare_row_1_features highlighted">Set whether the icons to Link Profiles/SHARE</div> <!-- fsmi_lp_compare_row_1_features -->
|
543 |
+
<div class="fsmi_lp_compare_row_1_features">Seperate Mouse Over Multiple Animation for Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
544 |
+
<div class="fsmi_lp_compare_row_1_features" style="border-bottom:0px;">Seperate Default Opacity for Each</div> <!-- fsmi_lp_compare_row_1_features -->
|
545 |
+
</div> <!-- right -->
|
546 |
+
</div> <!-- fsmi_lp_f_group -->
|
547 |
+
</div> <!-- row_1 -->
|
548 |
+
<div class="row_2">
|
549 |
+
<div class="fsmi_lp_compare_row_2_1"></div> <!-- fsmi_lp_compare_row_2_1 -->
|
550 |
+
<div class="row_2_border">
|
551 |
+
<div class="fsmi_lp_compare_row_2_2"></div> <!-- fsmi_lp_compare_row_2_1 -->
|
552 |
+
<div class="n"></div>
|
553 |
+
<div class="y"></div>
|
554 |
+
<div class="y"></div>
|
555 |
+
<div class="y"></div>
|
556 |
+
<div class="n"></div>
|
557 |
+
<div class="n"></div>
|
558 |
+
<div class="n"></div>
|
559 |
+
<div class="n"></div>
|
560 |
+
<div class="n"></div>
|
561 |
+
<div class="n"></div>
|
562 |
+
<div class="n"></div>
|
563 |
+
<div class="y"></div>
|
564 |
+
<div class="n"></div>
|
565 |
+
<div class="n"></div>
|
566 |
+
<div class="n"></div>
|
567 |
+
<div class="n"></div>
|
568 |
+
<div class="n"></div>
|
569 |
+
<div class="n"></div>
|
570 |
+
<div class="n"></div>
|
571 |
+
<div class="n"></div>
|
572 |
+
<div class="n"></div>
|
573 |
+
<div class="n"></div>
|
574 |
+
<div class="n"></div>
|
575 |
+
<div class="y"></div>
|
576 |
+
<div class="n"></div>
|
577 |
+
<div class="y"></div>
|
578 |
+
<div class="y"></div>
|
579 |
+
<div class="y"></div>
|
580 |
+
<div class="n"></div>
|
581 |
+
<div class="n"></div>
|
582 |
+
<div class="n"></div>
|
583 |
+
<div class="n"></div>
|
584 |
+
<div class="n"></div>
|
585 |
+
<div class="n"></div>
|
586 |
+
<div class="n"></div>
|
587 |
+
<div class="n"></div>
|
588 |
+
<div class="n"></div>
|
589 |
+
<div class="n"></div>
|
590 |
+
<div class="n"></div>
|
591 |
+
<div class="n"></div>
|
592 |
+
<div class="n"></div>
|
593 |
+
<div class="n"></div>
|
594 |
+
<div class="n"></div>
|
595 |
+
<div class="n" style="border-bottom:0px;"></div>
|
596 |
+
</div> <!-- row_2_border -->
|
597 |
+
</div> <!-- row_2 -->
|
598 |
+
<div class="row_3">
|
599 |
+
<div class="fsmi_lp_compare_row_3_1"></div> <!-- fsmi_lp_compare_row_3_1 -->
|
600 |
+
<div class="row_3_shadow">
|
601 |
+
<a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_settings_table&utm_medium=link&utm_campaign=compare_buynow" target="_blank"><div class="fsmi_lp_compare_row_3_2"></div></a> <!-- fsmi_lp_compare_row_3_2 -->
|
602 |
+
<div class="y"></div> <!-- y -->
|
603 |
+
<div class="y"></div> <!-- y -->
|
604 |
+
<div class="y"></div> <!-- y -->
|
605 |
+
<div class="y"></div> <!-- y -->
|
606 |
+
<div class="y"></div> <!-- y -->
|
607 |
+
<div class="y"></div> <!-- y -->
|
608 |
+
<div class="y"></div> <!-- y -->
|
609 |
+
<div class="y"></div> <!-- y -->
|
610 |
+
<div class="y"></div> <!-- y -->
|
611 |
+
<div class="y"></div> <!-- y -->
|
612 |
+
<div class="y"></div> <!-- y -->
|
613 |
+
<div class="y"></div> <!-- y -->
|
614 |
+
<div class="y"></div> <!-- y -->
|
615 |
+
<div class="y"></div> <!-- y -->
|
616 |
+
<div class="y"></div> <!-- y -->
|
617 |
+
<div class="y"></div> <!-- y -->
|
618 |
+
<div class="y"></div> <!-- y -->
|
619 |
+
<div class="y"></div> <!-- y -->
|
620 |
+
<div class="y"></div> <!-- y -->
|
621 |
+
<div class="y"></div> <!-- y -->
|
622 |
+
<div class="y"></div> <!-- y -->
|
623 |
+
<div class="y"></div> <!-- y -->
|
624 |
+
<div class="y"></div> <!-- y -->
|
625 |
+
<div class="y"></div> <!-- y -->
|
626 |
+
<div class="y"></div> <!-- y -->
|
627 |
+
<div class="y"></div> <!-- y -->
|
628 |
+
<div class="y"></div> <!-- y -->
|
629 |
+
<div class="y"></div> <!-- y -->
|
630 |
+
<div class="y"></div> <!-- y -->
|
631 |
+
<div class="y"></div> <!-- y -->
|
632 |
+
<div class="y"></div> <!-- y -->
|
633 |
+
<div class="y"></div> <!-- y -->
|
634 |
+
<div class="y"></div> <!-- y -->
|
635 |
+
<div class="y"></div> <!-- y -->
|
636 |
+
<div class="y"></div> <!-- y -->
|
637 |
+
<div class="y"></div> <!-- y -->
|
638 |
+
<div class="y"></div> <!-- y -->
|
639 |
+
<div class="y"></div> <!-- y -->
|
640 |
+
<div class="y"></div> <!-- y -->
|
641 |
+
<div class="y"></div> <!-- y -->
|
642 |
+
<div class="y"></div> <!-- y -->
|
643 |
+
<div class="y"></div> <!-- y -->
|
644 |
+
<div class="y"></div> <!-- y -->
|
645 |
+
<div class="y" style="border-bottom:0px;"></div> <!-- y -->
|
646 |
+
</div> <!-- row_3_shadow -->
|
647 |
+
</div> <!-- row_3 -->
|
648 |
+
</div> <!-- fsmi_lp_compare -->
|
649 |
+
<div id="fsmi_lp_shadow"></div> <!-- fsmi_lp_shadow -->
|
650 |
+
<div style="font-family: arial; font-size: 11px; color: darkgreen; float: left; margin-left: 39px; margin-bottom: 5px;">* Special Offer Price on Premium Version for Free Plugin Users Valid Only Until Next Free Version Upgrade - Click Order Now to Get Premium Version for $19.50</div>
|
651 |
+
</div> <!-- fsmi_landing_holder -->
|
652 |
+
|
653 |
+
|
654 |
+
<div id="ad_fsmi_2_button_order" style="float:left;margin-left: 445px;">
|
655 |
+
<a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_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 -->
|
656 |
+
';
|
657 |
+
$ad_2='<div id="ad_fsmi_2"> <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_settings&utm_medium=banner&utm_campaign=plugin_enjoy" target="_blank"><div id="ad_fsmi_2_button"></div></a> </div> <!-- ad_fsmi_2 --><br>
|
658 |
<div id="ad_fsmi_2_button_order">
|
659 |
+
<a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_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 --> ';
|
660 |
+
if($ad=="" || $ad == 2) { echo $ad_2; } else if ($ad == 1) { echo $ad_1; } else { echo $ad_2; }
|
661 |
}
|
662 |
|
663 |
?>
|
images/fsmi_lp_sprite.png
ADDED
Binary file
|
images/social_media.jpg
DELETED
Binary file
|
premium.php
CHANGED
@@ -16,11 +16,6 @@ Thanks again for using the plugin. we will never show the mesage again.
|
|
16 |
}
|
17 |
?>
|
18 |
<div id="acx_help_page">
|
19 |
-
<p><b>This Plugin is the basic widget version of floating social media icon wordpress plugin. This plugin only support the icon pack and the widget. Premium Version of This plugin includes all the features of floating social media icon and a lot more. Premium version is same as the premium version of floating social media icon wordpress plugin.</b></p>
|
20 |
-
<?php
|
21 |
-
socialicons_widget_comparison();
|
22 |
-
?>
|
23 |
-
<div align="center"><img style="border:1px solid gray;box-shadow:1px 1px 20px -9px black;border-radius: 8px 8px 8px 8px;" src="<?php echo plugins_url('images/money_back.jpg', __FILE__); ?>"></div>
|
24 |
<?php
|
25 |
socialicons_widget_comparison(1);
|
26 |
?>
|
16 |
}
|
17 |
?>
|
18 |
<div id="acx_help_page">
|
|
|
|
|
|
|
|
|
|
|
19 |
<?php
|
20 |
socialicons_widget_comparison(1);
|
21 |
?>
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Acurax
|
|
3 |
|
4 |
Tags: Social Media Widget,social,social icon widget,social media icon,socialmedia,pinterest widget,fb widget,facebook button,pinterest,social icon,social profile link,twitter facebook,social media button,pinterest button,rss icon,facebook profile url,google plus,google+,google plus button
|
5 |
Requires at least: 2.8
|
6 |
-
Tested up to: 3.
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Simple Wordpress Social Media Widget Plugin Where You Can Use Widget To Show Essential Social Media Icons - Can Select Social Media Icon Style , Size and alignment.
|
@@ -97,4 +97,26 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
|
|
97 |
1. Acurax Social Media Widget Plugin Settings Full Page (Low Quality Screenshot To Load Fast)
|
98 |
2. Widget Preview - [INSET: Widget Settings] (Low Quality Screenshot To Load Fast)
|
99 |
3. Icon Style/Themes Available With This Plugin. (Low Quality Screenshot To Load Fast)
|
100 |
-
4. Icon Size Selection, Reorder Icons Drag and Drop, Social Media Profile Link Settings. (Low Quality Screenshot To Load Fast)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
Tags: Social Media Widget,social,social icon widget,social media icon,socialmedia,pinterest widget,fb widget,facebook button,pinterest,social icon,social profile link,twitter facebook,social media button,pinterest button,rss icon,facebook profile url,google plus,google+,google plus button
|
5 |
Requires at least: 2.8
|
6 |
+
Tested up to: 3.5
|
7 |
Stable tag: trunk
|
8 |
|
9 |
Simple Wordpress Social Media Widget Plugin Where You Can Use Widget To Show Essential Social Media Icons - Can Select Social Media Icon Style , Size and alignment.
|
97 |
1. Acurax Social Media Widget Plugin Settings Full Page (Low Quality Screenshot To Load Fast)
|
98 |
2. Widget Preview - [INSET: Widget Settings] (Low Quality Screenshot To Load Fast)
|
99 |
3. Icon Style/Themes Available With This Plugin. (Low Quality Screenshot To Load Fast)
|
100 |
+
4. Icon Size Selection, Reorder Icons Drag and Drop, Social Media Profile Link Settings. (Low Quality Screenshot To Load Fast)
|
101 |
+
|
102 |
+
== Upgrade Notice ==
|
103 |
+
|
104 |
+
= 1.1 =
|
105 |
+
* December 04, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
106 |
+
* Added Misc settings.
|
107 |
+
* Now in Misc settings - You have option to fix icons diplaying in vertical issue.
|
108 |
+
* Added alt tags to icons.
|
109 |
+
* Fixed Missing Argument Issue.
|
110 |
+
* Added title tags to icon links.
|
111 |
+
* Graphics Improvements.
|
112 |
+
|
113 |
+
== Changelog ==
|
114 |
+
|
115 |
+
= 1.1 =
|
116 |
+
* December 04, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
117 |
+
* Added Misc settings.
|
118 |
+
* Now in Misc settings - You have option to fix icons diplaying in vertical issue.
|
119 |
+
* Added alt tags to icons.
|
120 |
+
* Fixed Missing Argument Issue.
|
121 |
+
* Added title tags to icon links.
|
122 |
+
* Graphics Improvements.
|
save_order.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
require( dirname( __FILE__ ) . '../../../../wp-config.php' );
|
3 |
$action = mysql_real_escape_string($_POST['action']);
|
4 |
$social_widget_icon_array_order = $_POST['recordsArray'];
|
5 |
-
|
6 |
if ($action == "updateRecordsListings")
|
7 |
{
|
8 |
$social_widget_icon_array_order = serialize($social_widget_icon_array_order);
|
@@ -11,5 +11,5 @@ if ($action == "updateRecordsListings")
|
|
11 |
echo "Social Media Icon's Order Saved";
|
12 |
echo "</div><br>";
|
13 |
}
|
14 |
-
|
15 |
?>
|
2 |
require( dirname( __FILE__ ) . '../../../../wp-config.php' );
|
3 |
$action = mysql_real_escape_string($_POST['action']);
|
4 |
$social_widget_icon_array_order = $_POST['recordsArray'];
|
5 |
+
if (current_user_can('manage_options')) {
|
6 |
if ($action == "updateRecordsListings")
|
7 |
{
|
8 |
$social_widget_icon_array_order = serialize($social_widget_icon_array_order);
|
11 |
echo "Social Media Icon's Order Saved";
|
12 |
echo "</div><br>";
|
13 |
}
|
14 |
+
}
|
15 |
?>
|
smw-misc.php
ADDED
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if($_POST['acurax_social_widget_icon_hidden'] == 'Y')
|
3 |
+
{ //Form data sent
|
4 |
+
$acx_si_smw_menu_highlight = $_POST['acx_si_smw_menu_highlight'];
|
5 |
+
update_option('acx_si_smw_menu_highlight', $acx_si_smw_menu_highlight);
|
6 |
+
|
7 |
+
$acx_si_smw_acx_service_banners = $_POST['acx_si_smw_acx_service_banners'];
|
8 |
+
update_option('acx_si_smw_acx_service_banners', $acx_si_smw_acx_service_banners);
|
9 |
+
|
10 |
+
$acx_si_smw_float_fix = $_POST['acx_si_smw_float_fix'];
|
11 |
+
update_option('acx_si_smw_float_fix', $acx_si_smw_float_fix);
|
12 |
+
|
13 |
+
?>
|
14 |
+
<div class="updated"><p><strong><?php _e('Acurax Widgets Misc Settings Saved!.' ); ?></strong></p></div>
|
15 |
+
<?php
|
16 |
+
}
|
17 |
+
else
|
18 |
+
{ //Normal page display
|
19 |
+
$acx_si_smw_menu_highlight = get_option('acx_si_smw_menu_highlight');
|
20 |
+
$acx_si_smw_acx_service_banners = get_option('acx_si_smw_acx_service_banners');
|
21 |
+
$acx_si_smw_float_fix = get_option('acx_si_smw_float_fix');
|
22 |
+
|
23 |
+
// Setting Defaults
|
24 |
+
if ($acx_si_smw_menu_highlight == "") { $acx_si_smw_menu_highlight = "yes"; }
|
25 |
+
if ($acx_si_smw_acx_service_banners == "") { $acx_si_smw_acx_service_banners = "yes"; }
|
26 |
+
if ($acx_si_smw_float_fix == "") { $acx_si_smw_float_fix = "no"; }
|
27 |
+
} //Main else
|
28 |
+
|
29 |
+
?>
|
30 |
+
<div class="wrap">
|
31 |
+
<?php
|
32 |
+
if ($acx_si_smw_acx_service_banners != "no") { ?>
|
33 |
+
<p class="widefat" style="padding:8px;width:99%;height: 75px;">
|
34 |
+
<b>Acurax Services >> </b><br>
|
35 |
+
<a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wtd" style="background:url(<?php echo plugins_url('images/wtd.jpg', __FILE__);?>);"></a>
|
36 |
+
|
37 |
+
<a href="http://www.acurax.com/services/web-designing.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wd" style="background:url(<?php echo plugins_url('images/wd.jpg', __FILE__);?>);"></a>
|
38 |
+
<a href="http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="spd" style="background:url(<?php echo plugins_url('images/spd.jpg', __FILE__);?>);"></a>
|
39 |
+
<a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wrd" style="background:url(<?php echo plugins_url('images/wr.jpg', __FILE__);?>);"></a>
|
40 |
+
</p>
|
41 |
+
<?php } else { ?>
|
42 |
+
<p class="widefat" style="padding:8px;width:99%;">
|
43 |
+
<b>Acurax Services >> </b>
|
44 |
+
<a href="http://www.acurax.com/services/blog-design.php" target="_blank">Wordpress Theme Design</a> |
|
45 |
+
<a href="http://www.acurax.com/services/web-designing.php" target="_blank">Website Design</a> |
|
46 |
+
<a href="http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php" target="_blank">Social Profile Design</a> |
|
47 |
+
<a href="http://www.acurax.com/social-media-marketing-optimization/twitter-background-design.php" target="_blank">Twitter Background Design</a> |
|
48 |
+
<a href="http://www.acurax.com/social-media-marketing-optimization/facebook-page-design.php" target="_blank">Facebook Page Design</a>
|
49 |
+
</p>
|
50 |
+
<?php } ?>
|
51 |
+
<div id="acx_fsmi_premium">
|
52 |
+
<a style="margin: 8px 0px 0px 10px; float: left; font-size: 16px; font-weight: bold;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=highlight&utm_campaign=fsmi" target="_blank">Fully Featured - Premium Floating Social Media Icon</a>
|
53 |
+
<a style="margin: -14px 0px 0px 10px; float: left;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=highlight_yellow&utm_campaign=fsmi" target="_blank"><img src="<?php echo plugins_url('images/yellow.png', __FILE__);?>"></a>
|
54 |
+
</div> <!-- acx_fsmi_premium -->
|
55 |
+
|
56 |
+
<?php echo "<h2>" . __( 'Acurax Social Widget Misc Settings', 'acx_si_config' ) . "</h2>"; ?>
|
57 |
+
|
58 |
+
<form name="acurax_si_form" method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
|
59 |
+
<input type="hidden" name="acurax_social_widget_icon_hidden" value="Y">
|
60 |
+
|
61 |
+
<p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Menu Highlight: " ); ?>
|
62 |
+
<select name="acx_si_smw_menu_highlight">
|
63 |
+
<option value="yes"<?php if ($acx_si_smw_menu_highlight == "yes") { echo 'selected="selected"'; } ?>>Yes, Highlight Plugin Menu </option>
|
64 |
+
<option value="no"<?php if ($acx_si_smw_menu_highlight == "no") { echo 'selected="selected"'; } ?>>No, Dont Highlight Plugin Menu </option>
|
65 |
+
</select>
|
66 |
+
<?php _e("Show Plugin Menu In Green" ); ?>
|
67 |
+
</p>
|
68 |
+
|
69 |
+
|
70 |
+
<p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Acurax Service Banners: " ); ?>
|
71 |
+
<select name="acx_si_smw_acx_service_banners">
|
72 |
+
<option value="yes"<?php if ($acx_si_smw_acx_service_banners == "yes") { echo 'selected="selected"'; } ?>>Yes, Show Them </option>
|
73 |
+
<option value="no"<?php if ($acx_si_smw_acx_service_banners == "no") { echo 'selected="selected"'; } ?>>No, Hide Them </option>
|
74 |
+
</select>
|
75 |
+
<?php _e("Show Acurax Service Banners On Plugin Settings Page?" ); ?>
|
76 |
+
</p>
|
77 |
+
|
78 |
+
<p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Social Media Widget Theme Conflict Fix: " ); ?>
|
79 |
+
<select name="acx_si_smw_float_fix">
|
80 |
+
<option value="yes"<?php if ($acx_si_smw_float_fix == "yes") { echo 'selected="selected"'; } ?>>Enable </option>
|
81 |
+
<option value="no"<?php if ($acx_si_smw_float_fix == "no") { echo 'selected="selected"'; } ?>>Disable </option>
|
82 |
+
</select>
|
83 |
+
<?php _e("If your widget/shortcode icons are in Vertical, then enable this to make it Horizontal" ); ?>
|
84 |
+
</p>
|
85 |
+
|
86 |
+
|
87 |
+
<p class="submit">
|
88 |
+
<input type="submit" name="Submit" value="<?php _e('Update Acurax Social Icon', 'acx_si_config' ) ?>" />
|
89 |
+
</p>
|
90 |
+
|
91 |
+
</form>
|
92 |
+
|
93 |
+
<hr/>
|
94 |
+
<?php socialicons_widget_comparison(1); ?>
|
95 |
+
|
96 |
+
<br>
|
97 |
+
<p class="widefat" style="padding:8px;width:99%;">
|
98 |
+
Something Not Working Well? Have a Doubt? Have a Suggestion? - <a href="http://www.acurax.com" target="_blank">Contact us now</a> | Need a Custom Designed Theme For your Blog or Website? Need a Custom Header Image? - <a href="http://www.acurax.com" target="_blank">Contact us now</a>
|
99 |
+
</p>
|
100 |
+
</div>
|
social-icon.php
CHANGED
@@ -69,6 +69,8 @@ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
|
|
69 |
$social_widget_icon_array_order = array(0,1,2,3,4,5,6);
|
70 |
$social_widget_icon_array_order = serialize($social_widget_icon_array_order);
|
71 |
update_option('social_widget_icon_array_order', $social_widget_icon_array_order);
|
|
|
|
|
72 |
} else
|
73 |
{
|
74 |
// Counting and Adding New Keys (UPGRADE PURPOSE)
|
@@ -116,15 +118,27 @@ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
|
|
116 |
|
117 |
|
118 |
<div class="wrap">
|
|
|
|
|
|
|
119 |
<p class="widefat" style="padding:8px;width:99%;height: 75px;">
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
<a href="http://www.acurax.com/services/web-designing.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wd" style="background:url(<?php echo plugins_url('images/wd.jpg', __FILE__);?>);"></a>
|
124 |
-
<a href="http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="spd" style="background:url(<?php echo plugins_url('images/spd.jpg', __FILE__);?>);"></a>
|
125 |
-
<a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wrd" style="background:url(<?php echo plugins_url('images/wr.jpg', __FILE__);?>);"></a>
|
126 |
-
</p>
|
127 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
<div id="acx_fsmi_premium">
|
129 |
<a style="margin: 8px 0px 0px 10px; float: left; font-size: 16px; font-weight: bold;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=highlight&utm_campaign=widget_plugin" target="_blank">Fully Featured - Premium Acurax Social Media Widget</a>
|
130 |
<a style="margin: -14px 0px 0px 10px; float: left;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=highlight_yellow&utm_campaign=widget_plugin" target="_blank"><img src="<?php echo plugins_url('images/yellow.png', __FILE__);?>"></a>
|
@@ -349,10 +363,19 @@ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
|
|
349 |
|
350 |
<p class="submit">
|
351 |
<input type="submit" name="Submit" value="<?php _e('Update Acurax Social Icon', 'acx_widget_si_config' ) ?>" />
|
|
|
352 |
</p>
|
353 |
|
354 |
</form>
|
355 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
356 |
<hr/>
|
357 |
<?php socialicons_widget_comparison(1); ?>
|
358 |
|
69 |
$social_widget_icon_array_order = array(0,1,2,3,4,5,6);
|
70 |
$social_widget_icon_array_order = serialize($social_widget_icon_array_order);
|
71 |
update_option('social_widget_icon_array_order', $social_widget_icon_array_order);
|
72 |
+
$acx_fsmi_si_current_version = "1.1.5"; // Current Version
|
73 |
+
update_option('acx_fsmi_si_current_version', $acx_fsmi_si_current_version);
|
74 |
} else
|
75 |
{
|
76 |
// Counting and Adding New Keys (UPGRADE PURPOSE)
|
118 |
|
119 |
|
120 |
<div class="wrap">
|
121 |
+
<?php
|
122 |
+
$acx_si_smw_acx_service_banners = get_option('acx_si_smw_acx_service_banners');
|
123 |
+
if ($acx_si_smw_acx_service_banners != "no") { ?>
|
124 |
<p class="widefat" style="padding:8px;width:99%;height: 75px;">
|
125 |
+
<b>Acurax Services >> </b><br>
|
126 |
+
<a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wtd" style="background:url(<?php echo plugins_url('images/wtd.jpg', __FILE__);?>);"></a>
|
|
|
|
|
|
|
|
|
|
|
127 |
|
128 |
+
<a href="http://www.acurax.com/services/web-designing.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wd" style="background:url(<?php echo plugins_url('images/wd.jpg', __FILE__);?>);"></a>
|
129 |
+
<a href="http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="spd" style="background:url(<?php echo plugins_url('images/spd.jpg', __FILE__);?>);"></a>
|
130 |
+
<a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wrd" style="background:url(<?php echo plugins_url('images/wr.jpg', __FILE__);?>);"></a>
|
131 |
+
</p>
|
132 |
+
<?php } else { ?>
|
133 |
+
<p class="widefat" style="padding:8px;width:99%;">
|
134 |
+
<b>Acurax Services >> </b>
|
135 |
+
<a href="http://www.acurax.com/services/blog-design.php" target="_blank">Wordpress Theme Design</a> |
|
136 |
+
<a href="http://www.acurax.com/services/web-designing.php" target="_blank">Website Design</a> |
|
137 |
+
<a href="http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php" target="_blank">Social Profile Design</a> |
|
138 |
+
<a href="http://www.acurax.com/social-media-marketing-optimization/twitter-background-design.php" target="_blank">Twitter Background Design</a> |
|
139 |
+
<a href="http://www.acurax.com/social-media-marketing-optimization/facebook-page-design.php" target="_blank">Facebook Page Design</a>
|
140 |
+
</p>
|
141 |
+
<?php } ?>
|
142 |
<div id="acx_fsmi_premium">
|
143 |
<a style="margin: 8px 0px 0px 10px; float: left; font-size: 16px; font-weight: bold;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=highlight&utm_campaign=widget_plugin" target="_blank">Fully Featured - Premium Acurax Social Media Widget</a>
|
144 |
<a style="margin: -14px 0px 0px 10px; float: left;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=highlight_yellow&utm_campaign=widget_plugin" target="_blank"><img src="<?php echo plugins_url('images/yellow.png', __FILE__);?>"></a>
|
363 |
|
364 |
<p class="submit">
|
365 |
<input type="submit" name="Submit" value="<?php _e('Update Acurax Social Icon', 'acx_widget_si_config' ) ?>" />
|
366 |
+
<a name="updated">.</a>
|
367 |
</p>
|
368 |
|
369 |
</form>
|
370 |
|
371 |
+
|
372 |
+
<?php if($_GET["status"] == "updated") { ?>
|
373 |
+
<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 Social Media Widget Update Successfully Completed - Thank You</div>
|
374 |
+
<?php
|
375 |
+
$acx_widget_si_current_version = "1.1"; // Current Version
|
376 |
+
update_option('acx_widget_si_current_version', $acx_widget_si_current_version);
|
377 |
+
} ?>
|
378 |
+
|
379 |
<hr/>
|
380 |
<?php socialicons_widget_comparison(1); ?>
|
381 |
|
style_admin.css
CHANGED
@@ -334,37 +334,167 @@ font-weight:normal;
|
|
334 |
font-family: sans-serif;
|
335 |
font-size: 21px;
|
336 |
}
|
337 |
-
|
|
|
338 |
{
|
339 |
-
|
340 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
}
|
342 |
-
#
|
343 |
{
|
344 |
-
|
345 |
-
|
|
|
|
|
|
|
|
|
|
|
346 |
}
|
347 |
-
|
348 |
{
|
349 |
-
|
|
|
350 |
}
|
351 |
-
|
352 |
{
|
353 |
-
|
354 |
-
|
355 |
}
|
356 |
-
#
|
357 |
{
|
358 |
-
|
359 |
-
|
360 |
-
margin-left: 4px;
|
361 |
-
margin-top: 11px;
|
362 |
-
opacity: 1 !important;
|
363 |
-
padding: 4px !important;
|
364 |
}
|
365 |
-
#
|
366 |
{
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
font-family: sans-serif;
|
335 |
font-size: 21px;
|
336 |
}
|
337 |
+
/* Comparison */
|
338 |
+
#fsmi_landing_holder
|
339 |
{
|
340 |
+
margin-left: auto;
|
341 |
+
margin-right: auto;
|
342 |
+
margin-top: 10px;
|
343 |
+
margin-bottom: 10px;
|
344 |
+
width: 1006px;
|
345 |
+
}
|
346 |
+
#float_left_100
|
347 |
+
{
|
348 |
+
width:100%;
|
349 |
+
float:left;
|
350 |
+
}
|
351 |
+
#fsmi_lp_compare .highlighted
|
352 |
+
{
|
353 |
+
background: none repeat scroll 0 0 azure;
|
354 |
+
font-weight: bold;
|
355 |
}
|
356 |
+
#fsmi_lp_compare
|
357 |
{
|
358 |
+
border: 1px solid black;
|
359 |
+
border-radius: 8px 8px 0 0;
|
360 |
+
float: left;
|
361 |
+
margin-left: 40px;
|
362 |
+
margin-top: 25px;
|
363 |
+
overflow: hidden;
|
364 |
+
width: 923px;
|
365 |
}
|
366 |
+
#fsmi_lp_compare .row_1
|
367 |
{
|
368 |
+
float: left;
|
369 |
+
width: 529px;
|
370 |
}
|
371 |
+
#fsmi_lp_compare .row_2
|
372 |
{
|
373 |
+
float: left;
|
374 |
+
width:192px;
|
375 |
}
|
376 |
+
#fsmi_lp_compare .row_3
|
377 |
{
|
378 |
+
float: left;
|
379 |
+
width: 202px;
|
|
|
|
|
|
|
|
|
380 |
}
|
381 |
+
#fsmi_lp_compare .fsmi_lp_compare_row_1_1
|
382 |
{
|
383 |
+
background-image: url("images/fsmi_lp_sprite.png");
|
384 |
+
background-position: -10px -710px;
|
385 |
+
border-bottom: 1px solid black;
|
386 |
+
height: 152px;
|
387 |
+
width: 529px;
|
388 |
+
}
|
389 |
+
#fsmi_lp_compare .fsmi_lp_compare_row_1_features
|
390 |
+
{
|
391 |
+
border-bottom: 1px solid lightgray;
|
392 |
+
color: #414147;
|
393 |
+
float: left;
|
394 |
+
font-family: arial;
|
395 |
+
font-size: 13px;
|
396 |
+
height: 16px;
|
397 |
+
padding: 8px;
|
398 |
+
width: 319px;
|
399 |
+
}
|
400 |
+
#fsmi_lp_compare .fsmi_lp_compare_row_2_1
|
401 |
+
{
|
402 |
+
background-image: url("images/fsmi_lp_sprite.png");
|
403 |
+
background-position: -10px -882px;
|
404 |
+
float: left;
|
405 |
+
height: 42px;
|
406 |
+
width: 192px;
|
407 |
+
}
|
408 |
+
#fsmi_lp_compare .fsmi_lp_compare_row_2_2
|
409 |
+
{
|
410 |
+
background-image: url("images/fsmi_lp_sprite.png");
|
411 |
+
background-position: -10px -944px;
|
412 |
+
float: left;
|
413 |
+
height: 111px;
|
414 |
+
width: 191px;
|
415 |
+
}
|
416 |
+
#fsmi_lp_compare .row_2_border
|
417 |
+
{
|
418 |
+
border-left: 1px solid black;
|
419 |
+
float: left;
|
420 |
+
width: 192px;
|
421 |
+
min-height: 1562px;
|
422 |
+
}
|
423 |
+
#fsmi_lp_compare .fsmi_lp_compare_row_3_1
|
424 |
+
{
|
425 |
+
background-image: url("images/fsmi_lp_sprite.png");
|
426 |
+
background-position: -10px -1075px;
|
427 |
+
float: left;
|
428 |
+
height: 17px;
|
429 |
+
width: 202px;
|
430 |
+
}
|
431 |
+
#fsmi_lp_compare .row_3_shadow
|
432 |
+
{
|
433 |
+
border-left: 1px solid black;
|
434 |
+
border-top: 1px solid black;
|
435 |
+
box-shadow: -2px -2px 10px -2px black;
|
436 |
+
float: left;
|
437 |
+
width: 201px;
|
438 |
+
min-height: 1586px;
|
439 |
+
}
|
440 |
+
#fsmi_lp_compare .fsmi_lp_compare_row_3_2
|
441 |
+
{
|
442 |
+
background-image: url("images/fsmi_lp_sprite.png");
|
443 |
+
background-position: -10px -1113px;
|
444 |
+
float: left;
|
445 |
+
height: 135px;
|
446 |
+
width: 201px;
|
447 |
+
}
|
448 |
+
#fsmi_lp_compare .y
|
449 |
+
{
|
450 |
+
background-color: #f3fdee;
|
451 |
+
background-image: url("images/fsmi_lp_sprite.png");
|
452 |
+
background-position: 75.4333px -1323px;
|
453 |
+
border-bottom: 1px solid lightgray;
|
454 |
+
float: left;
|
455 |
+
height: 32px;
|
456 |
+
width: 100%;
|
457 |
+
}
|
458 |
+
#fsmi_lp_compare .n
|
459 |
+
{
|
460 |
+
background-color: #FEF1F3;
|
461 |
+
background-image: url("images/fsmi_lp_sprite.png");
|
462 |
+
background-position: 74.9667px -1287px;
|
463 |
+
border-bottom: 1px solid lightgray;
|
464 |
+
float: left;
|
465 |
+
height: 32px;
|
466 |
+
width: 100%;
|
467 |
+
}
|
468 |
+
#fsmi_lp_shadow
|
469 |
+
{
|
470 |
+
background-image: url("images/fsmi_lp_sprite.png");
|
471 |
+
background-position: 123.5px -667px;
|
472 |
+
background-repeat: no-repeat;
|
473 |
+
float: left;
|
474 |
+
height: 24px;
|
475 |
+
width: 100%;
|
476 |
+
opacity: 0.7;
|
477 |
+
}
|
478 |
+
#fsmi_lp_f_group
|
479 |
+
{
|
480 |
+
float: left;
|
481 |
+
width: 529px;
|
482 |
+
}
|
483 |
+
#fsmi_lp_f_group .left
|
484 |
+
{
|
485 |
+
border-bottom: 1px solid lightgray;
|
486 |
+
border-right: 1px solid lightgray;
|
487 |
+
color: #414147;
|
488 |
+
float: left;
|
489 |
+
font-family: arial;
|
490 |
+
font-size: 14px;
|
491 |
+
font-weight: bold;
|
492 |
+
padding-left: 10px;
|
493 |
+
width: 183px;
|
494 |
+
}
|
495 |
+
#fsmi_lp_f_group .right
|
496 |
+
{
|
497 |
+
float: left;
|
498 |
+
width: 335px;
|
499 |
+
}
|
500 |
+
/* Comparison Ends Here */
|