Version Description
- July 14, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)..
- Added Align Option In Widget Settings
- Fixed Conflict With Other Plugins Settings Menu so Acx Social Icon Menu will not Disappear
Download this release
Release Info
Developer | Acurax |
Plugin | Social Media Flying Icons | Floating Social Media Icon |
Version | 1.1.4 |
Comparing to | |
See all releases |
Code changes from version 1.1.3 to 1.1.4
- acurax-social-icon.php +2 -2
- function.php +21 -4
- images/money_back.jpg +0 -0
- premium.php +6 -0
- readme.txt +23 -12
- screenshot-1.jpg +0 -0
- screenshot-2.jpg +0 -0
- screenshot-3.jpg +0 -0
- screenshot-4.jpg +0 -0
- social-help.php +2 -9
- social-icon.php +2 -7
- style_admin.css +35 -1
acurax-social-icon.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Floating Social Media Icon
|
|
4 |
Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
|
5 |
Description: An easy to use plugin to show social media icons which floats on your browsers right bottom, which links to your social media profiles, You have option in plugin settings to configure social media profile urls and also can select icon style,order and size.
|
6 |
Author: Acurax
|
7 |
-
Version: 1.1.
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -76,7 +76,7 @@ function acx_social_icon_premium()
|
|
76 |
|
77 |
function acx_social_icon_admin_actions()
|
78 |
{
|
79 |
-
add_menu_page( 'Acurax Social Icon Plugin Configuration', '
|
80 |
|
81 |
add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Premium', 'Premium', 8, 'Acurax-Social-Icons-Premium' ,'acx_social_icon_premium');
|
82 |
|
4 |
Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
|
5 |
Description: An easy to use plugin to show social media icons which floats on your browsers right bottom, which links to your social media profiles, You have option in plugin settings to configure social media profile urls and also can select icon style,order and size.
|
6 |
Author: Acurax
|
7 |
+
Version: 1.1.4
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
76 |
|
77 |
function acx_social_icon_admin_actions()
|
78 |
{
|
79 |
+
add_menu_page( 'Acurax Social Icon Plugin Configuration', 'Floating Social Media Settings', 8, 'Acurax-Social-Icons-Settings','acx_social_icon_admin',plugin_dir_url( __FILE__ ).'/images/admin.ico' ); // 8 for admin
|
80 |
|
81 |
add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Premium', 'Premium', 8, 'Acurax-Social-Icons-Premium' ,'acx_social_icon_premium');
|
82 |
|
function.php
CHANGED
@@ -577,11 +577,11 @@ if ($acx_si_twitter == "" && $acx_si_facebook == "" && $acx_si_youtube == "" &&
|
|
577 |
function acx_si_pluign_promotion()
|
578 |
{
|
579 |
echo '<div id="acx_td" class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
|
580 |
-
<p>It looks like you have been enjoying using Floating Social Media Icon plugin from <a href="http://www.acurax.com?utm_source=plugin&utm_medium=thirtyday&utm_campaign=
|
581 |
<p>
|
582 |
<a href="http://wordpress.org/extend/plugins/floating-social-media-icon/" class="button" style="color:black;text-decoration:none;padding:5px;margin-right:4px;" target="_blank">Rate it 5★\'s on wordpress</a>
|
583 |
<a href="https://twitter.com/share?url=http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/&text=I Use Floating SocialMedia Icon from @acuraxdotcom on wordpress and you should too -" class="button" style="color:black;text-decoration:none;padding:5px;margin-right:4px;" target="_blank">Tell Your Followers</a>
|
584 |
-
<a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=thirtyday&utm_campaign=
|
585 |
<a href="admin.php?page=Acurax-Social-Icons-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>
|
586 |
</p>
|
587 |
|
@@ -622,6 +622,7 @@ class Acx_Social_Icons_Widget extends WP_Widget
|
|
622 |
$title = apply_filters( 'widget_title', $instance['title'] );
|
623 |
$icon_size = $instance['icon_size'];
|
624 |
$icon_theme = $instance['icon_theme'];
|
|
|
625 |
|
626 |
// This is defined when you register a sidebar
|
627 |
echo $before_widget;
|
@@ -633,9 +634,10 @@ class Acx_Social_Icons_Widget extends WP_Widget
|
|
633 |
}
|
634 |
echo "<style>\n";
|
635 |
echo "." . $this->get_field_id('widget') . " img \n{\n";
|
636 |
-
echo "width:" . $icon_size . "px; \n}\n";
|
637 |
echo "</style>";
|
638 |
-
echo "<div id='acurax_si_simple'
|
|
|
639 |
acurax_si_simple($icon_theme);
|
640 |
echo "</div>";
|
641 |
// This is defined when you register a sidebar
|
@@ -691,6 +693,20 @@ class Acx_Social_Icons_Widget extends WP_Widget
|
|
691 |
} ?>
|
692 |
</select>
|
693 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
694 |
<?php
|
695 |
}
|
696 |
|
@@ -704,6 +720,7 @@ class Acx_Social_Icons_Widget extends WP_Widget
|
|
704 |
$instance['title'] = strip_tags( $new_instance['title'] );
|
705 |
$instance['icon_size'] = strip_tags( $new_instance['icon_size'] );
|
706 |
$instance['icon_theme'] = strip_tags( $new_instance['icon_theme'] );
|
|
|
707 |
return $instance;
|
708 |
}
|
709 |
} add_action('widgets_init', create_function('', 'return register_widget("Acx_Social_Icons_Widget");'));
|
577 |
function acx_si_pluign_promotion()
|
578 |
{
|
579 |
echo '<div id="acx_td" class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
|
580 |
+
<p>It looks like you have been enjoying using Floating Social Media Icon plugin from <a href="http://www.acurax.com?utm_source=plugin&utm_medium=thirtyday&utm_campaign=fsmi" 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_yellow&utm_campaign=fsmi" title="Premium Floating Social Media Icon" target="_blank">premium version</a> to enjoy more features and help support continued development of the plugin? - You can also support us by giving us a website design, redesign, social media project or by spreading the world about this plugin. Thank you for using the plugin</p>
|
581 |
<p>
|
582 |
<a href="http://wordpress.org/extend/plugins/floating-social-media-icon/" class="button" style="color:black;text-decoration:none;padding:5px;margin-right:4px;" target="_blank">Rate it 5★\'s on wordpress</a>
|
583 |
<a href="https://twitter.com/share?url=http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/&text=I Use Floating SocialMedia Icon from @acuraxdotcom on wordpress and you should too -" class="button" style="color:black;text-decoration:none;padding:5px;margin-right:4px;" target="_blank">Tell Your Followers</a>
|
584 |
+
<a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=thirtyday&utm_campaign=fsmi" class="button" style="color:black;text-decoration:none;padding:5px;margin-right:4px;" target="_blank">Order Premium Version</a>
|
585 |
<a href="admin.php?page=Acurax-Social-Icons-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>
|
586 |
</p>
|
587 |
|
622 |
$title = apply_filters( 'widget_title', $instance['title'] );
|
623 |
$icon_size = $instance['icon_size'];
|
624 |
$icon_theme = $instance['icon_theme'];
|
625 |
+
$icon_align = $instance['icon_align'];
|
626 |
|
627 |
// This is defined when you register a sidebar
|
628 |
echo $before_widget;
|
634 |
}
|
635 |
echo "<style>\n";
|
636 |
echo "." . $this->get_field_id('widget') . " img \n{\n";
|
637 |
+
echo "width:" . $icon_size . "px; \n } \n";
|
638 |
echo "</style>";
|
639 |
+
echo "<div id='acurax_si_simple' class='" . $this->get_field_id('widget') . "'";
|
640 |
+
if($icon_align != "") { echo " align='" . $icon_align . "'>"; } else { echo " align='center'>"; }
|
641 |
acurax_si_simple($icon_theme);
|
642 |
echo "</div>";
|
643 |
// This is defined when you register a sidebar
|
693 |
} ?>
|
694 |
</select>
|
695 |
</p>
|
696 |
+
<p>
|
697 |
+
<label for="<?php echo $this->get_field_id('icon_align'); ?>"><?php _e('Icon Align:'); ?></label>
|
698 |
+
<select class="widefat" name="<?php echo $this->get_field_name('icon_align'); ?>" id="<?php echo $this
|
699 |
+
->get_field_id('icon_align'); ?>">
|
700 |
+
<option value=""<?php if ($instance['icon_align'] == "") { echo 'selected="selected"'; } ?>>Default </
|
701 |
+
option>
|
702 |
+
<option value="left"<?php if ($instance['icon_align'] == "left") { echo 'selected="selected"'; } ?>>Left </
|
703 |
+
option>
|
704 |
+
<option value="center"<?php if ($instance['icon_align'] == "center") { echo 'selected="selected"'; } ?>>Center </
|
705 |
+
option>
|
706 |
+
<option value="right"<?php if ($instance['icon_align'] == "right") { echo 'selected="selected"'; } ?>>Right </
|
707 |
+
option>
|
708 |
+
</select>
|
709 |
+
</p>
|
710 |
<?php
|
711 |
}
|
712 |
|
720 |
$instance['title'] = strip_tags( $new_instance['title'] );
|
721 |
$instance['icon_size'] = strip_tags( $new_instance['icon_size'] );
|
722 |
$instance['icon_theme'] = strip_tags( $new_instance['icon_theme'] );
|
723 |
+
$instance['icon_align'] = strip_tags( $new_instance['icon_align'] );
|
724 |
return $instance;
|
725 |
}
|
726 |
} add_action('widgets_init', create_function('', 'return register_widget("Acx_Social_Icons_Widget");'));
|
images/money_back.jpg
ADDED
Binary file
|
premium.php
CHANGED
@@ -18,6 +18,12 @@ Thanks again for using the plugin. we will never show the mesage again.
|
|
18 |
<div id="acx_help_page">
|
19 |
<?php
|
20 |
socialicons_comparison();
|
|
|
|
|
|
|
21 |
socialicons_comparison(1);
|
|
|
|
|
|
|
22 |
acurax_optin(); ?>
|
23 |
</div>
|
18 |
<div id="acx_help_page">
|
19 |
<?php
|
20 |
socialicons_comparison();
|
21 |
+
?>
|
22 |
+
<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>
|
23 |
+
<?php
|
24 |
socialicons_comparison(1);
|
25 |
+
?>
|
26 |
+
<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>
|
27 |
+
<?php
|
28 |
acurax_optin(); ?>
|
29 |
</div>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:http://www.acurax.com/products/floating-social-media-icon-plugin-wor
|
|
4 |
|
5 |
Tags: social media,social,social media widget,social media icon,socialmedia,pinterest widget,fb widget,facebook button,pinterest,social icon,social floating icon,social profile link,floating social media button,twitter facebook,social media button,pinterest button,rss icon,facebook profile url,google plus,google+,google plus button
|
6 |
Requires at least: 2.8
|
7 |
-
Tested up to: 3.4.
|
8 |
Stable tag: trunk
|
9 |
|
10 |
Easy 2 Use Plugin 2 Show SocialMedia Icons That Floats,Can Configure Social Icon Design,Order & Size at Plugin Settings, Suport Widget & Shortcode
|
@@ -35,10 +35,12 @@ A Quicklook
|
|
35 |
|
36 |
★ Featured Plugin On Many Plugin Review Sites
|
37 |
|
38 |
-
You can make the icons to appear automatically or you can use widgets,
|
39 |
shortcode or php code to display icons where ever you like to show.
|
40 |
If you use the option to show it automatically.
|
41 |
|
|
|
|
|
42 |
The icons will fly from top left to bottom right and it will stay there
|
43 |
even if user scrolls the page, thus it floats
|
44 |
|
@@ -55,7 +57,7 @@ Multiple Social Media Widget Support
|
|
55 |
|
56 |
Shortcode Support
|
57 |
|
58 |
-
★ Each Shortcode Support Seperate Icon Theme and Icon Size (check faq)
|
59 |
|
60 |
Icons in content
|
61 |
|
@@ -70,7 +72,7 @@ Other Features
|
|
70 |
|
71 |
★ Easy to configure user interface
|
72 |
|
73 |
-
★ Icon Size Selection Support
|
74 |
|
75 |
★ Automatic Integration
|
76 |
|
@@ -78,7 +80,7 @@ Other Features
|
|
78 |
|
79 |
★ Pinterest Support
|
80 |
|
81 |
-
In Short we can say, this is an ultimate social icon widget that can be configured to float or not to float on your visitors screen.. check screenshots and video for a clear understanding.
|
82 |
|
83 |
We Always Look Forward Your Comments and Suggestions for Future Updates. You can Submit Your Comments at our [Website](http://www.acurax.com/ "Website Designing")
|
84 |
|
@@ -146,9 +148,9 @@ Yes, You can.. Just to go **"Acx Social icons"** Menu which is in left side on w
|
|
146 |
|
147 |
You can use the shortcode **[DISPLAY_ACURAX_ICONS]** in any post or page or even in your custom post types. You can also use **<?php DISPLAY_ACURAX_ICONS(); ?>** anywhere in the theme files to show this icons.(But note that manual icons display will not have the animation
|
148 |
|
149 |
-
= Can i customize the shortcode to show icons with differant icon design and size? =
|
150 |
|
151 |
-
Yes, You can use shortcode to display icon and set icon size,what ever you want which is supported by the plugin. You can override the global icon theme and size configuration using some attributes on shortcode.
|
152 |
|
153 |
As you know we have given icon themes, Numbers to identify. Right now we have themes like, 1,2,3,4....
|
154 |
|
@@ -196,14 +198,18 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
|
|
196 |
|
197 |
== Screenshots ==
|
198 |
|
199 |
-
1. Plugin Settings Page (Low Quality Screenshot To Load Fast)
|
200 |
-
2. Plugin in
|
201 |
-
3. Icon
|
202 |
-
4. Social Media Profile Link Settings (Low Quality Screenshot To Load Fast)
|
203 |
-
5. Credit Link Enable Disable Option (Low Quality Screenshot To Load Fast)
|
204 |
|
205 |
== Upgrade Notice ==
|
206 |
|
|
|
|
|
|
|
|
|
|
|
207 |
= 1.1.3 =
|
208 |
* June 01, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)..
|
209 |
* Optimized Images
|
@@ -263,6 +269,11 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
|
|
263 |
|
264 |
== Changelog ==
|
265 |
|
|
|
|
|
|
|
|
|
|
|
266 |
= 1.1.3 =
|
267 |
* June 01, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)..
|
268 |
* Optimized Images
|
4 |
|
5 |
Tags: social media,social,social media widget,social media icon,socialmedia,pinterest widget,fb widget,facebook button,pinterest,social icon,social floating icon,social profile link,floating social media button,twitter facebook,social media button,pinterest button,rss icon,facebook profile url,google plus,google+,google plus button
|
6 |
Requires at least: 2.8
|
7 |
+
Tested up to: 3.4.2
|
8 |
Stable tag: trunk
|
9 |
|
10 |
Easy 2 Use Plugin 2 Show SocialMedia Icons That Floats,Can Configure Social Icon Design,Order & Size at Plugin Settings, Suport Widget & Shortcode
|
35 |
|
36 |
★ Featured Plugin On Many Plugin Review Sites
|
37 |
|
38 |
+
You can make the icons to appear automatically or you can use social media widgets,
|
39 |
shortcode or php code to display icons where ever you like to show.
|
40 |
If you use the option to show it automatically.
|
41 |
|
42 |
+
[Floating Social Media Icon Premium Version is available with more features and performance improvements](http://clients.acurax.com/link.php?id=11/ "Floating Social Media Icon Premium")
|
43 |
+
|
44 |
The icons will fly from top left to bottom right and it will stay there
|
45 |
even if user scrolls the page, thus it floats
|
46 |
|
57 |
|
58 |
Shortcode Support
|
59 |
|
60 |
+
★ Each Shortcode Support Seperate social media Icon Theme and Icon Size (check faq)
|
61 |
|
62 |
Icons in content
|
63 |
|
72 |
|
73 |
★ Easy to configure user interface
|
74 |
|
75 |
+
★ Social Media Icon Size Selection Support
|
76 |
|
77 |
★ Automatic Integration
|
78 |
|
80 |
|
81 |
★ Pinterest Support
|
82 |
|
83 |
+
In Short we can say, this is an ultimate social media icon widget that can be configured to float or not to float on your visitors screen.. check screenshots and video for a clear understanding.
|
84 |
|
85 |
We Always Look Forward Your Comments and Suggestions for Future Updates. You can Submit Your Comments at our [Website](http://www.acurax.com/ "Website Designing")
|
86 |
|
148 |
|
149 |
You can use the shortcode **[DISPLAY_ACURAX_ICONS]** in any post or page or even in your custom post types. You can also use **<?php DISPLAY_ACURAX_ICONS(); ?>** anywhere in the theme files to show this icons.(But note that manual icons display will not have the animation
|
150 |
|
151 |
+
= Can i customize the shortcode to show social media icons with differant icon design and size? =
|
152 |
|
153 |
+
Yes, You can use shortcode to display icon and set social media icon size,what ever you want which is supported by the plugin. You can override the global icon theme and size configuration using some attributes on shortcode.
|
154 |
|
155 |
As you know we have given icon themes, Numbers to identify. Right now we have themes like, 1,2,3,4....
|
156 |
|
198 |
|
199 |
== Screenshots ==
|
200 |
|
201 |
+
1. Floating Social Media Icon Plugin Settings Full Page (Low Quality Screenshot To Load Fast)
|
202 |
+
2. Plugin in Action,Widget Preview and Floating Preview, If Display Mode is Auto, the floating icons will fly from top left and stay at bottom right and move along with scroll. [INSET: Widget Settings] (Low Quality Screenshot To Load Fast)
|
203 |
+
3. Icon Style/Themes Available With This Plugin. (Low Quality Screenshot To Load Fast)
|
204 |
+
4. Icon Size Selection, Reorder Icons Drag and Drop, Social Media Profile Link Settings. (Low Quality Screenshot To Load Fast)
|
|
|
205 |
|
206 |
== Upgrade Notice ==
|
207 |
|
208 |
+
= 1.1.4 =
|
209 |
+
* July 14, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)..
|
210 |
+
* Added Align Option In Widget Settings
|
211 |
+
* Fixed Conflict With Other Plugins Settings Menu so Acx Social Icon Menu will not Disappear
|
212 |
+
|
213 |
= 1.1.3 =
|
214 |
* June 01, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)..
|
215 |
* Optimized Images
|
269 |
|
270 |
== Changelog ==
|
271 |
|
272 |
+
= 1.1.4 =
|
273 |
+
* July 14, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)..
|
274 |
+
* Added Align Option In Widget Settings
|
275 |
+
* Fixed Conflict With Other Plugins Settings Menu so Acx Social Icon Menu will not Disappear
|
276 |
+
|
277 |
= 1.1.3 =
|
278 |
* June 01, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)..
|
279 |
* Optimized Images
|
screenshot-1.jpg
CHANGED
Binary file
|
screenshot-2.jpg
CHANGED
Binary file
|
screenshot-3.jpg
CHANGED
Binary file
|
screenshot-4.jpg
CHANGED
Binary file
|
social-help.php
CHANGED
@@ -1,14 +1,7 @@
|
|
1 |
<div id="acx_help_page">
|
2 |
<div id="acx_fsmi_premium">
|
3 |
-
|
4 |
-
<
|
5 |
-
<h2 style="vertical-align: middle;"><a href="admin.php?page=Acurax-Social-Icons-Premium">Fully Featured - Premium Floating Social Media Icon</a>
|
6 |
-
</h2>
|
7 |
-
</div>
|
8 |
-
<div style="float: left;padding: 5px">
|
9 |
-
<a href="http://clients.acurax.com/cart.php?gid=8&utm_source=plugin_settings_top&utm_medium=link&utm_campaign=plugin_settings" target="_blank"><img src="<?php echo plugins_url('images/orange_buynow.png', __FILE__);?>"></a>
|
10 |
-
</div>
|
11 |
-
|
12 |
</div> <!-- acx_fsmi_premium -->
|
13 |
<h2>Floating Social Media Icon - Wordpress Plugin - Help/Support</h2>
|
14 |
|
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=highlight&utm_campaign=fsmi" target="_blank">Fully Featured - Premium Floating Social Media Icon</a>
|
4 |
+
<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>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
</div> <!-- acx_fsmi_premium -->
|
6 |
<h2>Floating Social Media Icon - Wordpress Plugin - Help/Support</h2>
|
7 |
|
social-icon.php
CHANGED
@@ -131,13 +131,8 @@ update_option('acx_si_installed_date', $acx_si_installed_date);
|
|
131 |
</p>
|
132 |
|
133 |
<div id="acx_fsmi_premium">
|
134 |
-
<
|
135 |
-
<
|
136 |
-
</h2>
|
137 |
-
</div>
|
138 |
-
<div style="float: left; padding: 0px; margin-top: -8px;">
|
139 |
-
<a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_settings_top&utm_medium=link&utm_campaign=plugin_settings" target="_blank"><img src="<?php echo plugins_url('images/yellow.png', __FILE__);?>"></a>
|
140 |
-
</div>
|
141 |
</div> <!-- acx_fsmi_premium -->
|
142 |
|
143 |
<?php echo "<h2>" . __( 'Acurax Social Icons Options', 'acx_si_config' ) . "</h2>"; ?>
|
131 |
</p>
|
132 |
|
133 |
<div id="acx_fsmi_premium">
|
134 |
+
<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>
|
135 |
+
<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>
|
|
|
|
|
|
|
|
|
|
|
136 |
</div> <!-- acx_fsmi_premium -->
|
137 |
|
138 |
<?php echo "<h2>" . __( 'Acurax Social Icons Options', 'acx_si_config' ) . "</h2>"; ?>
|
style_admin.css
CHANGED
@@ -324,7 +324,7 @@ font-weight:normal;
|
|
324 |
#acx_fsmi_premium {
|
325 |
background-color: #FFF6D6;
|
326 |
border: 1px solid #FCC328;
|
327 |
-
height:
|
328 |
margin-bottom: 20px;
|
329 |
margin-top: 20px;
|
330 |
padding: 5px;
|
@@ -333,4 +333,38 @@ font-weight:normal;
|
|
333 |
{
|
334 |
font-family: sans-serif;
|
335 |
font-size: 21px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
}
|
324 |
#acx_fsmi_premium {
|
325 |
background-color: #FFF6D6;
|
326 |
border: 1px solid #FCC328;
|
327 |
+
height: 35px;
|
328 |
margin-bottom: 20px;
|
329 |
margin-top: 20px;
|
330 |
padding: 5px;
|
333 |
{
|
334 |
font-family: sans-serif;
|
335 |
font-size: 21px;
|
336 |
+
}
|
337 |
+
#toplevel_page_Acurax-Social-Icons-Settings
|
338 |
+
{
|
339 |
+
background: none repeat scroll 0 0 LimeGreen;
|
340 |
+
color: white;
|
341 |
+
}
|
342 |
+
#toplevel_page_Acurax-Social-Icons-Settings li a
|
343 |
+
{
|
344 |
+
color: #21759B;
|
345 |
+
text-align: left;
|
346 |
+
}
|
347 |
+
.folded #toplevel_page_Acurax-Social-Icons-Settings .wp-submenu-head
|
348 |
+
{
|
349 |
+
color: #21759B;
|
350 |
+
}
|
351 |
+
.folded #toplevel_page_Acurax-Social-Icons-Settings img
|
352 |
+
{
|
353 |
+
margin-left: -1px !important;
|
354 |
+
margin-top: 1px !important;
|
355 |
+
}
|
356 |
+
#toplevel_page_Acurax-Social-Icons-Settings img
|
357 |
+
{
|
358 |
+
background: none repeat scroll 0 0 white;
|
359 |
+
border-radius: 4px 4px 4px 4px;
|
360 |
+
margin-left: 4px;
|
361 |
+
margin-top: 11px;
|
362 |
+
opacity: 1 !important;
|
363 |
+
padding: 4px !important;
|
364 |
+
}
|
365 |
+
#toplevel_page_Acurax-Social-Icons-Settings a
|
366 |
+
{
|
367 |
+
color: InfoText;
|
368 |
+
font-size: 12px !important;
|
369 |
+
text-align: center;
|
370 |
}
|