Version Description
- February 20, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
- Added Option to disable highlighting menu on admin area
- Added Option to disable highlighting plugin on plugin list
- Improved CSS Styling
- Improved Programming Structure
- Stable Release
Download this release
Release Info
Developer | Acurax |
Plugin | Social Media Widget by Acurax |
Version | 1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1 to 1.2
- acurax-social-icon.php +7 -7
- dynamic_admin_style.css +30 -0
- function.php +39 -18
- images/acurax_international.png +0 -0
- images/fsmi_lp_sprite.png +0 -0
- premium.php +1 -1
- readme.txt +17 -1
- save_order.php +0 -15
- screenshot-1.jpg +0 -0
- screenshot-2.jpg +0 -0
- screenshot-3.jpg +0 -0
- screenshot-4.jpg +0 -0
- smw-misc.php +21 -2
- social-help.php +10 -1
- social-icon.php +17 -10
- style_admin.css +18 -31
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 |
*/
|
@@ -45,11 +45,11 @@ function Acurax_Widget_Links($links, $file) {
|
|
45 |
if ($file == $plugin) {
|
46 |
|
47 |
return array_merge( $links, array(
|
48 |
-
'<div id="plugin_page_links"
|
49 |
-
'<a href="https://twitter.com/#!/acuraxdotcom" target="_blank">' . __('
|
50 |
-
'<a href="http://www.facebook.com/AcuraxInternational" target="_blank">' . __('
|
51 |
-
'<a href="http://www.acurax.com/services/web-designing.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page" target="_blank">' . __('
|
52 |
-
'<a href="http://www.acurax.com/services/blog-design.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page" target="_blank">' . __('
|
53 |
'<a href="http://www.acurax.com/contact.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page" target="_blank" style="border:0px;">' . __('Contact Acurax') . '</a></div>'
|
54 |
));
|
55 |
}
|
@@ -81,7 +81,7 @@ function acx_social_widget_icon_misc()
|
|
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/
|
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 |
|
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.2
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
45 |
if ($file == $plugin) {
|
46 |
|
47 |
return array_merge( $links, array(
|
48 |
+
'<div id="plugin_page_links">',
|
49 |
+
'<a href="https://twitter.com/#!/acuraxdotcom" target="_blank">' . __('Follow us on Twitter') . '</a>',
|
50 |
+
'<a href="http://www.facebook.com/AcuraxInternational" target="_blank">' . __('Like us on Facebook') . '</a>',
|
51 |
+
'<a href="http://www.acurax.com/services/web-designing.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page" target="_blank">' . __('Need Your Website Redesigned?') . '</a>',
|
52 |
+
'<a href="http://www.acurax.com/services/blog-design.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page" target="_blank">' . __('Need a Custom Blog Design?') . '</a>',
|
53 |
'<a href="http://www.acurax.com/contact.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page" target="_blank" style="border:0px;">' . __('Contact Acurax') . '</a></div>'
|
54 |
));
|
55 |
}
|
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/acurax_international.png' ); // 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 |
|
dynamic_admin_style.css
CHANGED
@@ -31,4 +31,34 @@ margin-top: 1px !important;
|
|
31 |
color: InfoText;
|
32 |
font-size: 12px !important;
|
33 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
}
|
31 |
color: InfoText;
|
32 |
font-size: 12px !important;
|
33 |
text-align: center;
|
34 |
+
}
|
35 |
+
#acurax-social-media-widget
|
36 |
+
{
|
37 |
+
background: url("images/plugin_page_bg.png") repeat-x scroll 0 0 #FFFFFF;
|
38 |
+
}
|
39 |
+
#plugin_page_links
|
40 |
+
{
|
41 |
+
background: url("images/menu_bg.png") repeat scroll 0 0 transparent;
|
42 |
+
border-radius: 8px 8px 8px 8px;
|
43 |
+
color: #75AA00;
|
44 |
+
min-height: 25px;
|
45 |
+
padding: 5px;
|
46 |
+
text-align: center;
|
47 |
+
}
|
48 |
+
#acurax-social-media-widget .plugin-title
|
49 |
+
{
|
50 |
+
background: url("images/from.png") no-repeat scroll 10% 94% transparent;
|
51 |
+
}
|
52 |
+
#plugin_page_links a
|
53 |
+
{
|
54 |
+
border-right: 1px solid white;
|
55 |
+
color: white;
|
56 |
+
font-family: arial;
|
57 |
+
font-size: 13px;
|
58 |
+
font-weight: bold;
|
59 |
+
margin-left: -5px;
|
60 |
+
padding: 2px 6px 2px 3px;
|
61 |
+
}
|
62 |
+
#plugin_page_links a:hover
|
63 |
+
{
|
64 |
}
|
function.php
CHANGED
@@ -44,37 +44,37 @@ function acurax_si_widget_simple($theme = "")
|
|
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__) . "
|
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__) . "
|
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__) . "
|
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__) . "
|
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__) . "
|
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__) . "
|
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__) . "
|
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);
|
@@ -128,7 +128,7 @@ function acurax_widget_icons()
|
|
128 |
{
|
129 |
//*********************** STARTED DISPLAYING THE ICONS ***********************
|
130 |
echo "\n\n\n<!-- Starting Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n";
|
131 |
-
echo "<div id='acx_social_widget'
|
132 |
acurax_si_widget_simple();
|
133 |
echo "</div>\n";
|
134 |
echo "<!-- Ending Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n\n\n";
|
@@ -189,7 +189,7 @@ function DISPLAY_WIDGET_acurax_widget_icons_SC($atts)
|
|
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'
|
193 |
acurax_si_widget_simple($theme);
|
194 |
echo "</div>";
|
195 |
$content = ob_get_contents();
|
@@ -213,7 +213,7 @@ function acx_widget_si_custom_admin_js()
|
|
213 |
function acx_widget_si_pluign_upgrade_not_finished()
|
214 |
{
|
215 |
echo '<div class="error">
|
216 |
-
<p><b>Thanks for updating Acurax Social Media Widget plugin... You need to visit <a href="admin.php?page=Acurax-Social-Widget-Settings">Plugin\'s Settings Page</a> to Complete the
|
217 |
</div>';
|
218 |
}
|
219 |
$total_arrays = 7; // Number Of Services
|
@@ -229,11 +229,11 @@ if ($social_widget_icon_array_count < $total_arrays)
|
|
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
|
233 |
</div>';
|
234 |
}
|
235 |
$acx_widget_si_current_version = get_option('acx_widget_si_current_version');
|
236 |
-
if($acx_widget_si_current_version != '1.
|
237 |
{
|
238 |
if (get_option('social_widget_icon_array_order') != "")
|
239 |
{
|
@@ -263,10 +263,10 @@ if ($acx_widget_si_twitter == "" && $acx_widget_si_facebook == "" && $acx_widget
|
|
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="
|
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="
|
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>
|
272 |
|
@@ -322,7 +322,7 @@ class acx_social_widget_icons_Widget extends WP_Widget
|
|
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 "
|
326 |
acurax_si_widget_simple($icon_theme);
|
327 |
echo "</div>";
|
328 |
// This is defined when you register a sidebar
|
@@ -445,12 +445,15 @@ Display
|
|
445 |
|
446 |
|
447 |
<div id="fsmi_lp_f_group">
|
448 |
-
<div class="left" style="padding-top:
|
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 |
|
@@ -572,6 +575,9 @@ PHP Code Support
|
|
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>
|
@@ -642,12 +648,15 @@ PHP Code Support
|
|
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 |
-
|
651 |
</div> <!-- fsmi_landing_holder -->
|
652 |
|
653 |
|
@@ -659,5 +668,17 @@ $ad_2='<div id="ad_fsmi_2"> <a href="http://clients.acurax.com/floating-socialme
|
|
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 |
?>
|
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__) . " style='border:0px;' 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__) . " style='border:0px;' 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__) . " style='border:0px;' 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__) . " style='border:0px;' 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__) . " style='border:0px;' 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__) . " style='border:0px;' 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__) . " style='border:0px;' 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);
|
128 |
{
|
129 |
//*********************** STARTED DISPLAYING THE ICONS ***********************
|
130 |
echo "\n\n\n<!-- Starting Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n";
|
131 |
+
echo "<div id='acx_social_widget' style='text-align:center;'>";
|
132 |
acurax_si_widget_simple();
|
133 |
echo "</div>\n";
|
134 |
echo "<!-- Ending Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n\n\n";
|
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' style='text-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();
|
213 |
function acx_widget_si_pluign_upgrade_not_finished()
|
214 |
{
|
215 |
echo '<div class="error">
|
216 |
+
<p><b>Thanks for updating Acurax Social Media Widget plugin... You need to visit <a href="admin.php?page=Acurax-Social-Widget-Settings">Plugin\'s Settings Page</a> to Complete the Updating Process - <a href="admin.php?page=Acurax-Social-Widget-Settings">Click Here Visit Social Icon Plugin Settings</a></b></p>
|
217 |
</div>';
|
218 |
}
|
219 |
$total_arrays = 7; // Number Of Services
|
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 Updating 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.3') // Current Version
|
237 |
{
|
238 |
if (get_option('social_widget_icon_array_order') != "")
|
239 |
{
|
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="admin.php?page=Acurax-Social-Widget-Premium#compare" title="Premium Acurax Social Media Widget">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="admin.php?page=Acurax-Social-Widget-Premium#compare" class="button" style="color:black;text-decoration:none;padding:5px;margin-right:4px;">Need More Features?</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>
|
272 |
|
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 " style='text-align:" . $icon_align . ";'>"; } else { echo " style='text-align:center;'>"; }
|
326 |
acurax_si_widget_simple($icon_theme);
|
327 |
echo "</div>";
|
328 |
// This is defined when you register a sidebar
|
445 |
|
446 |
|
447 |
<div id="fsmi_lp_f_group">
|
448 |
+
<div class="left" style="padding-top: 74px;padding-bottom: 74px;">
|
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 class="fsmi_lp_compare_row_1_features">Show Share on Posts/Pages</div> <!-- fsmi_lp_compare_row_1_features -->
|
455 |
+
<div class="fsmi_lp_compare_row_1_features highlighted">Efficient Image Picker For Pinterest</div> <!-- fsmi_lp_compare_row_1_features -->
|
456 |
+
<div class="fsmi_lp_compare_row_1_features highlighted">Define Social Media Meta for Each Page/Post</div> <!-- fsmi_lp_compare_row_1_features -->
|
457 |
</div> <!-- right -->
|
458 |
</div> <!-- fsmi_lp_f_group -->
|
459 |
|
575 |
<div class="n"></div>
|
576 |
<div class="n"></div>
|
577 |
<div class="n"></div>
|
578 |
+
<div class="n"></div>
|
579 |
+
<div class="n"></div>
|
580 |
+
<div class="n"></div>
|
581 |
<div class="y"></div>
|
582 |
<div class="n"></div>
|
583 |
<div class="y"></div>
|
648 |
<div class="y"></div> <!-- y -->
|
649 |
<div class="y"></div> <!-- y -->
|
650 |
<div class="y"></div> <!-- y -->
|
651 |
+
<div class="y"></div> <!-- y -->
|
652 |
+
<div class="y"></div> <!-- y -->
|
653 |
+
<div class="y"></div> <!-- y -->
|
654 |
<div class="y" style="border-bottom:0px;"></div> <!-- y -->
|
655 |
</div> <!-- row_3_shadow -->
|
656 |
</div> <!-- row_3 -->
|
657 |
</div> <!-- fsmi_lp_compare -->
|
658 |
<div id="fsmi_lp_shadow"></div> <!-- fsmi_lp_shadow -->
|
659 |
+
<!-- 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 -->
|
660 |
</div> <!-- fsmi_landing_holder -->
|
661 |
|
662 |
|
668 |
<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 --> ';
|
669 |
if($ad=="" || $ad == 2) { echo $ad_2; } else if ($ad == 1) { echo $ad_1; } else { echo $ad_2; }
|
670 |
}
|
671 |
+
function acx_asmw_saveorder_callback()
|
672 |
+
{
|
673 |
+
global $wpdb;
|
674 |
+
$social_widget_icon_array_order = $_POST['recordsArray'];
|
675 |
+
if (current_user_can('manage_options')) {
|
676 |
+
$social_widget_icon_array_order = serialize($social_widget_icon_array_order);
|
677 |
+
update_option('social_widget_icon_array_order', $social_widget_icon_array_order);
|
678 |
+
echo "<div id='acurax_notice' align='center' style='width: 420px; font-family: arial; font-weight: normal; font-size: 22px;'>";
|
679 |
+
echo "Social Media Icon's Order Saved";
|
680 |
+
echo "</div><br>";
|
681 |
+
}
|
682 |
+
die(); // this is required to return a proper result
|
683 |
+
} add_action('wp_ajax_acx_asmw_saveorder', 'acx_asmw_saveorder_callback');
|
684 |
?>
|
images/acurax_international.png
ADDED
Binary file
|
images/fsmi_lp_sprite.png
CHANGED
Binary file
|
premium.php
CHANGED
@@ -10,7 +10,7 @@ display:none;
|
|
10 |
}
|
11 |
</style>
|
12 |
<div class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
|
13 |
-
Thanks again for using the plugin. we will never show the
|
14 |
</div>
|
15 |
<?php
|
16 |
}
|
10 |
}
|
11 |
</style>
|
12 |
<div class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
|
13 |
+
Thanks again for using the plugin. we will never show the message again.
|
14 |
</div>
|
15 |
<?php
|
16 |
}
|
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.
|
@@ -101,6 +101,14 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
|
|
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.
|
@@ -112,6 +120,14 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
|
|
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.
|
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.6.1
|
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.
|
101 |
|
102 |
== Upgrade Notice ==
|
103 |
|
104 |
+
= 1.2 =
|
105 |
+
* February 20, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
106 |
+
* Added Option to disable highlighting menu on admin area
|
107 |
+
* Added Option to disable highlighting plugin on plugin list
|
108 |
+
* Improved CSS Styling
|
109 |
+
* Improved Programming Structure
|
110 |
+
* Stable Release
|
111 |
+
|
112 |
= 1.1 =
|
113 |
* December 04, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
114 |
* Added Misc settings.
|
120 |
|
121 |
== Changelog ==
|
122 |
|
123 |
+
= 1.2 =
|
124 |
+
* February 20, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
125 |
+
* Added Option to disable highlighting menu on admin area
|
126 |
+
* Added Option to disable highlighting plugin on plugin list
|
127 |
+
* Improved CSS Styling
|
128 |
+
* Improved Programming Structure
|
129 |
+
* Stable Release
|
130 |
+
|
131 |
= 1.1 =
|
132 |
* December 04, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
|
133 |
* Added Misc settings.
|
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_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);
|
9 |
-
update_option('social_widget_icon_array_order', $social_widget_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 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
screenshot-1.jpg
DELETED
Binary file
|
screenshot-2.jpg
DELETED
Binary file
|
screenshot-3.jpg
DELETED
Binary file
|
screenshot-4.jpg
DELETED
Binary file
|
smw-misc.php
CHANGED
@@ -10,6 +10,9 @@ update_option('acx_si_smw_acx_service_banners', $acx_si_smw_acx_service_banners)
|
|
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
|
@@ -19,11 +22,13 @@ else
|
|
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 |
?>
|
@@ -48,10 +53,13 @@ if ($acx_si_smw_acx_service_banners != "no") { ?>
|
|
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 |
|
@@ -75,6 +83,14 @@ if ($acx_si_smw_acx_service_banners != "no") { ?>
|
|
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>
|
@@ -91,10 +107,13 @@ if ($acx_si_smw_acx_service_banners != "no") { ?>
|
|
91 |
</form>
|
92 |
|
93 |
<hr/>
|
94 |
-
<?php
|
|
|
|
|
|
|
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>
|
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 |
+
$acx_si_smw_hide_advert = $_POST['acx_si_smw_hide_advert'];
|
14 |
+
update_option('acx_si_smw_hide_advert', $acx_si_smw_hide_advert);
|
15 |
+
|
16 |
?>
|
17 |
<div class="updated"><p><strong><?php _e('Acurax Widgets Misc Settings Saved!.' ); ?></strong></p></div>
|
18 |
<?php
|
22 |
$acx_si_smw_menu_highlight = get_option('acx_si_smw_menu_highlight');
|
23 |
$acx_si_smw_acx_service_banners = get_option('acx_si_smw_acx_service_banners');
|
24 |
$acx_si_smw_float_fix = get_option('acx_si_smw_float_fix');
|
25 |
+
$acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
|
26 |
|
27 |
// Setting Defaults
|
28 |
if ($acx_si_smw_menu_highlight == "") { $acx_si_smw_menu_highlight = "yes"; }
|
29 |
if ($acx_si_smw_acx_service_banners == "") { $acx_si_smw_acx_service_banners = "yes"; }
|
30 |
if ($acx_si_smw_float_fix == "") { $acx_si_smw_float_fix = "no"; }
|
31 |
+
if ($acx_si_smw_hide_advert == "") { $acx_si_smw_hide_advert = "no"; }
|
32 |
} //Main else
|
33 |
|
34 |
?>
|
53 |
<a href="http://www.acurax.com/social-media-marketing-optimization/facebook-page-design.php" target="_blank">Facebook Page Design</a>
|
54 |
</p>
|
55 |
<?php } ?>
|
56 |
+
<?php if($acx_si_smw_hide_advert == "no")
|
57 |
+
{ ?>
|
58 |
<div id="acx_fsmi_premium">
|
59 |
<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>
|
60 |
<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>
|
61 |
</div> <!-- acx_fsmi_premium -->
|
62 |
+
<?php } ?>
|
63 |
|
64 |
<?php echo "<h2>" . __( 'Acurax Social Widget Misc Settings', 'acx_si_config' ) . "</h2>"; ?>
|
65 |
|
83 |
<?php _e("Show Acurax Service Banners On Plugin Settings Page?" ); ?>
|
84 |
</p>
|
85 |
|
86 |
+
<p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Hide Premium Version Adverts: " ); ?>
|
87 |
+
<select name="acx_si_smw_hide_advert">
|
88 |
+
<option value="yes"<?php if ($acx_si_smw_hide_advert == "yes") { echo 'selected="selected"'; } ?>>Yes </option>
|
89 |
+
<option value="no"<?php if ($acx_si_smw_hide_advert == "no") { echo 'selected="selected"'; } ?>>No </option>
|
90 |
+
</select>
|
91 |
+
<?php _e("Would you like to hide the feature comparison advertisement of basic and premium version from plugin settings pages?" ); ?>
|
92 |
+
</p>
|
93 |
+
|
94 |
<p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Social Media Widget Theme Conflict Fix: " ); ?>
|
95 |
<select name="acx_si_smw_float_fix">
|
96 |
<option value="yes"<?php if ($acx_si_smw_float_fix == "yes") { echo 'selected="selected"'; } ?>>Enable </option>
|
107 |
</form>
|
108 |
|
109 |
<hr/>
|
110 |
+
<?php if($acx_si_smw_hide_advert == "no")
|
111 |
+
{
|
112 |
+
socialicons_widget_comparison(1);
|
113 |
+
} ?>
|
114 |
|
115 |
<br>
|
116 |
<p class="widefat" style="padding:8px;width:99%;">
|
117 |
+
Something Not Working Well? Have a Doubt? Have a Suggestion? - <a href="http://www.acurax.com/contact.php" 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/contact.php" target="_blank">Contact us now</a>
|
118 |
</p>
|
119 |
</div>
|
social-help.php
CHANGED
@@ -1,16 +1,25 @@
|
|
1 |
<div id="acx_help_page">
|
|
|
|
|
|
|
|
|
|
|
2 |
<div id="acx_fsmi_premium">
|
3 |
<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=help&utm_campaign=widget_plugin" target="_blank">Fully Featured - Premium Acurax Social Media Widget</a>
|
4 |
<a style="margin: -14px 0px 0px 10px; float: left;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=help_yellow&utm_campaign=widget_plugin" target="_blank"><img src="<?php echo plugins_url('images/yellow.png', __FILE__);?>"></a>
|
5 |
</div> <!-- acx_fsmi_premium -->
|
|
|
6 |
<h2>Acurax Social Media Widget - Wordpress Plugin - Help/Support</h2>
|
7 |
|
8 |
<p>Thank you for using Acurax Social Media Widget Plugin For Your Wordpress Social Media Profile Linking Need.</p>
|
9 |
|
10 |
-
<h3><a href="http://
|
11 |
|
12 |
<?php
|
|
|
|
|
13 |
socialicons_widget_comparison(1);
|
|
|
14 |
?>
|
15 |
|
16 |
</div> <!-- acx_help_page -->
|
1 |
<div id="acx_help_page">
|
2 |
+
<?php
|
3 |
+
$acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
|
4 |
+
if($acx_si_smw_hide_advert == "no")
|
5 |
+
{
|
6 |
+
?>
|
7 |
<div id="acx_fsmi_premium">
|
8 |
<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=help&utm_campaign=widget_plugin" target="_blank">Fully Featured - Premium Acurax Social Media Widget</a>
|
9 |
<a style="margin: -14px 0px 0px 10px; float: left;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=help_yellow&utm_campaign=widget_plugin" target="_blank"><img src="<?php echo plugins_url('images/yellow.png', __FILE__);?>"></a>
|
10 |
</div> <!-- acx_fsmi_premium -->
|
11 |
+
<?php } ?>
|
12 |
<h2>Acurax Social Media Widget - Wordpress Plugin - Help/Support</h2>
|
13 |
|
14 |
<p>Thank you for using Acurax Social Media Widget Plugin For Your Wordpress Social Media Profile Linking Need.</p>
|
15 |
|
16 |
+
<h3><a href="http://clients.acurax.com/link.php?id=14" target="_blank">Click here to open the FAQ and Help Page</a></h3>
|
17 |
|
18 |
<?php
|
19 |
+
if($acx_si_smw_hide_advert == "no")
|
20 |
+
{
|
21 |
socialicons_widget_comparison(1);
|
22 |
+
}
|
23 |
?>
|
24 |
|
25 |
</div> <!-- acx_help_page -->
|
social-icon.php
CHANGED
@@ -36,6 +36,7 @@ if($_POST['acurax_social_widget_icon_hidden'] == 'Y')
|
|
36 |
update_option('acx_widget_si_feed', $acx_widget_si_feed);
|
37 |
|
38 |
$social_widget_icon_array_order = get_option('social_widget_icon_array_order');
|
|
|
39 |
|
40 |
?>
|
41 |
<div class="updated"><p><strong><?php _e('Acurax Social Icon Widget Settings Saved!.' ); ?></strong></p></div>
|
@@ -58,10 +59,12 @@ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
|
|
58 |
$acx_widget_si_credit = get_option('acx_widget_si_credit');
|
59 |
$acx_widget_si_icon_size = get_option('acx_widget_si_icon_size');
|
60 |
$social_widget_icon_array_order = get_option('social_widget_icon_array_order');
|
|
|
61 |
// Setting Defaults
|
62 |
if ($acx_widget_si_credit == "") { $acx_widget_si_credit = "no"; }
|
63 |
if ($acx_widget_si_icon_size == "") { $acx_widget_si_icon_size = "32"; }
|
64 |
if ($acx_widget_si_theme == "") { $acx_widget_si_theme = "1"; }
|
|
|
65 |
|
66 |
|
67 |
if ($social_widget_icon_array_order == "")
|
@@ -69,8 +72,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 |
-
$
|
73 |
-
update_option('
|
74 |
} else
|
75 |
{
|
76 |
// Counting and Adding New Keys (UPGRADE PURPOSE)
|
@@ -88,8 +91,6 @@ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
|
|
88 |
|
89 |
$social_widget_icon_array_order = serialize($social_widget_icon_array_order);
|
90 |
update_option('social_widget_icon_array_order', $social_widget_icon_array_order);
|
91 |
-
|
92 |
-
// Counting and Adding New Keys Ends Here
|
93 |
} //Normal page display else
|
94 |
} //Main else
|
95 |
|
@@ -105,8 +106,8 @@ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
|
|
105 |
{
|
106 |
opacity: 0.5, cursor: 'move', update: function()
|
107 |
{
|
108 |
-
var order = jQuery(this).sortable("serialize") + '&action=
|
109 |
-
jQuery.post(
|
110 |
{
|
111 |
jQuery("#contentRight").html(theResponse);
|
112 |
});
|
@@ -139,11 +140,13 @@ if ($acx_si_smw_acx_service_banners != "no") { ?>
|
|
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>
|
145 |
</div> <!-- acx_fsmi_premium -->
|
146 |
-
|
147 |
<?php echo "<h2>" . __( 'Acurax Social Icons Options', 'acx_widget_si_config' ) . "</h2>"; ?>
|
148 |
|
149 |
<form name="acurax_si_form" method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
|
@@ -372,15 +375,19 @@ if ($acx_si_smw_acx_service_banners != "no") { ?>
|
|
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.
|
376 |
update_option('acx_widget_si_current_version', $acx_widget_si_current_version);
|
377 |
} ?>
|
378 |
|
379 |
<hr/>
|
380 |
-
<?php
|
|
|
|
|
|
|
|
|
381 |
|
382 |
<br>
|
383 |
<p class="widefat" style="padding:8px;width:99%;">
|
384 |
-
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>
|
385 |
</p>
|
386 |
</div>
|
36 |
update_option('acx_widget_si_feed', $acx_widget_si_feed);
|
37 |
|
38 |
$social_widget_icon_array_order = get_option('social_widget_icon_array_order');
|
39 |
+
$acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
|
40 |
|
41 |
?>
|
42 |
<div class="updated"><p><strong><?php _e('Acurax Social Icon Widget Settings Saved!.' ); ?></strong></p></div>
|
59 |
$acx_widget_si_credit = get_option('acx_widget_si_credit');
|
60 |
$acx_widget_si_icon_size = get_option('acx_widget_si_icon_size');
|
61 |
$social_widget_icon_array_order = get_option('social_widget_icon_array_order');
|
62 |
+
$acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
|
63 |
// Setting Defaults
|
64 |
if ($acx_widget_si_credit == "") { $acx_widget_si_credit = "no"; }
|
65 |
if ($acx_widget_si_icon_size == "") { $acx_widget_si_icon_size = "32"; }
|
66 |
if ($acx_widget_si_theme == "") { $acx_widget_si_theme = "1"; }
|
67 |
+
if ($acx_si_smw_hide_advert == "") { $acx_si_smw_hide_advert = "no"; }
|
68 |
|
69 |
|
70 |
if ($social_widget_icon_array_order == "")
|
72 |
$social_widget_icon_array_order = array(0,1,2,3,4,5,6);
|
73 |
$social_widget_icon_array_order = serialize($social_widget_icon_array_order);
|
74 |
update_option('social_widget_icon_array_order', $social_widget_icon_array_order);
|
75 |
+
$acx_widget_si_current_version = "1.3"; // Current Version
|
76 |
+
update_option('acx_widget_si_current_version', $acx_widget_si_current_version);
|
77 |
} else
|
78 |
{
|
79 |
// Counting and Adding New Keys (UPGRADE PURPOSE)
|
91 |
|
92 |
$social_widget_icon_array_order = serialize($social_widget_icon_array_order);
|
93 |
update_option('social_widget_icon_array_order', $social_widget_icon_array_order);
|
|
|
|
|
94 |
} //Normal page display else
|
95 |
} //Main else
|
96 |
|
106 |
{
|
107 |
opacity: 0.5, cursor: 'move', update: function()
|
108 |
{
|
109 |
+
var order = jQuery(this).sortable("serialize") + '&action=acx_asmw_saveorder';
|
110 |
+
jQuery.post(ajaxurl, order, function(theResponse)
|
111 |
{
|
112 |
jQuery("#contentRight").html(theResponse);
|
113 |
});
|
140 |
<a href="http://www.acurax.com/social-media-marketing-optimization/facebook-page-design.php" target="_blank">Facebook Page Design</a>
|
141 |
</p>
|
142 |
<?php } ?>
|
143 |
+
<?php if($acx_si_smw_hide_advert == "no")
|
144 |
+
{ ?>
|
145 |
<div id="acx_fsmi_premium">
|
146 |
<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>
|
147 |
<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>
|
148 |
</div> <!-- acx_fsmi_premium -->
|
149 |
+
<?php } ?>
|
150 |
<?php echo "<h2>" . __( 'Acurax Social Icons Options', 'acx_widget_si_config' ) . "</h2>"; ?>
|
151 |
|
152 |
<form name="acurax_si_form" method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
|
375 |
<?php if($_GET["status"] == "updated") { ?>
|
376 |
<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>
|
377 |
<?php
|
378 |
+
$acx_widget_si_current_version = "1.3"; // Current Version
|
379 |
update_option('acx_widget_si_current_version', $acx_widget_si_current_version);
|
380 |
} ?>
|
381 |
|
382 |
<hr/>
|
383 |
+
<?php if($acx_si_smw_hide_advert == "no")
|
384 |
+
{
|
385 |
+
socialicons_widget_comparison(1);
|
386 |
+
}
|
387 |
+
?>
|
388 |
|
389 |
<br>
|
390 |
<p class="widefat" style="padding:8px;width:99%;">
|
391 |
+
Something Not Working Well? Have a Doubt? Have a Suggestion? - <a href="http://www.acurax.com/contact.php" 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/contact.php" target="_blank">Contact us now</a>
|
392 |
</p>
|
393 |
</div>
|
style_admin.css
CHANGED
@@ -57,36 +57,6 @@ float:left;
|
|
57 |
width: 36px;
|
58 |
margin-left:1px;
|
59 |
}
|
60 |
-
#acurax-social-media-widget
|
61 |
-
{
|
62 |
-
background: url("images/plugin_page_bg.png") repeat-x scroll 0 0 #FFFFFF;
|
63 |
-
}
|
64 |
-
#plugin_page_links
|
65 |
-
{
|
66 |
-
background: url("images/menu_bg.png") repeat scroll 0 0 transparent;
|
67 |
-
border-radius: 8px 8px 8px 8px;
|
68 |
-
color: #75AA00;
|
69 |
-
min-height: 25px;
|
70 |
-
padding: 5px;
|
71 |
-
text-align: center;
|
72 |
-
}
|
73 |
-
#acurax-social-media-widget .plugin-title
|
74 |
-
{
|
75 |
-
background: url("images/from.png") no-repeat scroll 10% 94% transparent;
|
76 |
-
}
|
77 |
-
#plugin_page_links a
|
78 |
-
{
|
79 |
-
border-right: 1px solid white;
|
80 |
-
color: white;
|
81 |
-
font-family: arial;
|
82 |
-
font-size: 13px;
|
83 |
-
font-weight: bold;
|
84 |
-
margin-left: -5px;
|
85 |
-
padding: 2px 6px 2px 3px;
|
86 |
-
}
|
87 |
-
#plugin_page_links a:hover
|
88 |
-
{
|
89 |
-
}
|
90 |
#acx_help_page
|
91 |
{
|
92 |
}
|
@@ -497,4 +467,21 @@ float:left;
|
|
497 |
float: left;
|
498 |
width: 335px;
|
499 |
}
|
500 |
-
/* Comparison Ends Here */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
width: 36px;
|
58 |
margin-left:1px;
|
59 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
#acx_help_page
|
61 |
{
|
62 |
}
|
467 |
float: left;
|
468 |
width: 335px;
|
469 |
}
|
470 |
+
/* Comparison Ends Here */
|
471 |
+
#acx_td
|
472 |
+
{
|
473 |
+
font-size: 14px !important;
|
474 |
+
line-height: 27px !important;
|
475 |
+
text-align: center;
|
476 |
+
}
|
477 |
+
#acx_td p .button
|
478 |
+
{
|
479 |
+
border: 1px solid lightgray;
|
480 |
+
margin: 0 3px 0 0 !important;
|
481 |
+
min-height: 30px !important;
|
482 |
+
padding: 3px 10px !important;
|
483 |
+
}
|
484 |
+
#acx_td p .button:hover
|
485 |
+
{
|
486 |
+
background: azure;
|
487 |
+
}
|