Version Description
- Major Fix For More Theme Compatibility
Download this release
Release Info
Developer | Acurax |
Plugin | Social Media Flying Icons | Floating Social Media Icon |
Version | 1.0.5 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.5
- acurax-social-icon.php +1 -1
- function.php +14 -9
- readme.txt +49 -4
- social-icon.php +1 -4
acurax-social-icon.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Floating Social Media Icon
|
|
4 |
Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
|
5 |
Description: An easy to use plugin to show social media icons which floats on your browsers right bottom, which links to your social media profiles, You have option in plugin settings to configure social media profile urls and also can select icon style and size.
|
6 |
Author: Acurax
|
7 |
-
Version: 1.0.
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
4 |
Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
|
5 |
Description: An easy to use plugin to show social media icons which floats on your browsers right bottom, which links to your social media profiles, You have option in plugin settings to configure social media profile urls and also can select icon style and size.
|
6 |
Author: Acurax
|
7 |
+
Version: 1.0.5
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
function.php
CHANGED
@@ -34,30 +34,35 @@ function acurax_icons()
|
|
34 |
$facebook_link = "<a href='". $acx_si_facebook ."' target='_blank'>" . "<img src=" . plugins_url('images/'. $acx_si_theme .'/facebook.png', __FILE__) . " border='0'></a>";
|
35 |
$youtube_link = "<a href='". $acx_si_youtube ."' target='_blank'>" . "<img src=" . plugins_url('images/'. $acx_si_theme .'/youtube.png', __FILE__) . " border='0'></a>";
|
36 |
$linkedin_link = "<a href='". $acx_si_linkedin ."' target='_blank'>" . "<img src=" . plugins_url('images/'. $acx_si_theme .'/linkedin.png', __FILE__) . " border='0'></a>";
|
37 |
-
echo "<div id='divBottomRight' align='center'>";
|
38 |
acx_option_value_check("acx_si_twitter",$twitter_link,"");
|
39 |
acx_option_value_check("acx_si_facebook",$facebook_link,"");
|
40 |
acx_option_value_check("acx_si_youtube",$youtube_link,"");
|
41 |
acx_option_value_check("acx_si_linkedin",$linkedin_link,"");
|
42 |
$acx_si_credit = get_option('acx_si_credit');
|
|
|
|
|
43 |
if($acx_si_credit == "yes") {
|
44 |
-
echo "<br>" . "<a href='http://www.acurax.com' target='_blank' title='
|
45 |
}
|
46 |
-
|
|
|
|
|
47 |
?>
|
48 |
<script type="text/javascript" src="<?php echo plugins_url('js.php', __FILE__);?>"></script>
|
49 |
<?php
|
|
|
50 |
}
|
51 |
function extra_style_acx_icon()
|
52 |
{
|
53 |
$acx_si_theme = get_option('acx_si_icon_size');
|
54 |
-
echo "<style
|
55 |
-
echo "#divBottomRight img {";
|
56 |
-
echo "width: " . $acx_si_theme. "}";
|
57 |
-
echo "</style
|
58 |
}
|
59 |
if ( function_exists('acurax_icons') ) {
|
60 |
-
add_action('
|
61 |
-
add_action('
|
62 |
}
|
63 |
?>
|
34 |
$facebook_link = "<a href='". $acx_si_facebook ."' target='_blank'>" . "<img src=" . plugins_url('images/'. $acx_si_theme .'/facebook.png', __FILE__) . " border='0'></a>";
|
35 |
$youtube_link = "<a href='". $acx_si_youtube ."' target='_blank'>" . "<img src=" . plugins_url('images/'. $acx_si_theme .'/youtube.png', __FILE__) . " border='0'></a>";
|
36 |
$linkedin_link = "<a href='". $acx_si_linkedin ."' target='_blank'>" . "<img src=" . plugins_url('images/'. $acx_si_theme .'/linkedin.png', __FILE__) . " border='0'></a>";
|
37 |
+
echo "\n\n\n<!-- Starting Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n<div id='divBottomRight' align='center'>";
|
38 |
acx_option_value_check("acx_si_twitter",$twitter_link,"");
|
39 |
acx_option_value_check("acx_si_facebook",$facebook_link,"");
|
40 |
acx_option_value_check("acx_si_youtube",$youtube_link,"");
|
41 |
acx_option_value_check("acx_si_linkedin",$linkedin_link,"");
|
42 |
$acx_si_credit = get_option('acx_si_credit');
|
43 |
+
if($acx_si_twitter != "" || $acx_si_facebook != "" || $acx_si_youtube != "" || $acx_si_linkedin != "")
|
44 |
+
{
|
45 |
if($acx_si_credit == "yes") {
|
46 |
+
echo "<br>" . "<a href='http://www.acurax.com' target='_blank' title='Webdesign and Development' style='text-decoration: none; display: block; text-align: center; font-size: 8px;' align='center'>Web Design</a>";
|
47 |
}
|
48 |
+
}
|
49 |
+
echo "</div>\n<!-- Ending Icon Display Code For Social Media Icon From Acurax International www.acurax.com -->\n\n\n";
|
50 |
+
echo "\n\n\n<!-- Starting Javascript For Social Media Icon From Acurax International www.acurax.com -->\n";
|
51 |
?>
|
52 |
<script type="text/javascript" src="<?php echo plugins_url('js.php', __FILE__);?>"></script>
|
53 |
<?php
|
54 |
+
echo "<!-- Ending Javascript Code For Social Media Icon From Acurax International www.acurax.com -->\n\n\n";
|
55 |
}
|
56 |
function extra_style_acx_icon()
|
57 |
{
|
58 |
$acx_si_theme = get_option('acx_si_icon_size');
|
59 |
+
echo "\n\n\n<!-- Starting Styles For Social Media Icon From Acurax International www.acurax.com -->\n<style type='text/css'>\n";
|
60 |
+
echo "#divBottomRight img \n{\n";
|
61 |
+
echo "width: " . $acx_si_theme. "px; \n}\n";
|
62 |
+
echo "</style>\n<!-- Ending Styles For Social Media Icon From Acurax International www.acurax.com -->\n\n\n\n";
|
63 |
}
|
64 |
if ( function_exists('acurax_icons') ) {
|
65 |
+
add_action('wp_footer', 'acurax_icons');
|
66 |
+
add_action('wp_head', 'extra_style_acx_icon');
|
67 |
}
|
68 |
?>
|
readme.txt
CHANGED
@@ -2,12 +2,12 @@
|
|
2 |
Contributors: Acurax
|
3 |
Donate link:http://www.acurax.com/
|
4 |
|
5 |
-
Tags: social media,social media
|
6 |
Requires at least: 2.8
|
7 |
Tested up to: 3.3.1
|
8 |
Stable tag: trunk
|
9 |
|
10 |
-
An easy to use plugin to show
|
11 |
|
12 |
== Description ==
|
13 |
|
@@ -16,11 +16,14 @@ We Always Look Forward Your Comments and Suggestions for Future Updates. You can
|
|
16 |
|
17 |
[Click Here To See a Live Demo](http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/ "Floating Social Media Icon Demo")
|
18 |
|
|
|
|
|
19 |
**About**
|
20 |
|
21 |
This Plugin is developed and maintained by [Acurax International](http://www.acurax.com/ "Website Designing"). For any support, you may contact us [here](http://www.acurax.com/contact.php "Web Consulting").[Acurax](http://www.acurax.com/ "Acurax Web Design Development Service") Provide [Wordpress Theme Design](http://www.acurax.com/services/web-designing.php "Wordpress Theme Design Service") and [Development](http://www.acurax.com/services/web-development.php "Wordpress Development") Services.
|
22 |
|
23 |
-
**Plugin Video Tour**
|
|
|
24 |
== Installation ==
|
25 |
|
26 |
Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.
|
@@ -29,10 +32,52 @@ Then Visit Plugin Configuration Settings and select a theme and size for icons.
|
|
29 |
'[youtube http://www.youtube.com/watch?v=OagiknITpmU]'
|
30 |
After Installation,Dont Forgot to Cast Your Vote on Combatibility :) Thanks for trying...
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
== Screenshots ==
|
33 |
|
34 |
1. Plugin Settings Page
|
35 |
2. Plugin in action, It will stay at bottom right with animated move even if we scroll.. watch video to see it in action..
|
36 |
3. Icon Settings Style/Theme and Size Selection Options
|
37 |
4. Social Media Profile Link Settings
|
38 |
-
5. Credit Link Enable Disable Option
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
Contributors: Acurax
|
3 |
Donate link:http://www.acurax.com/
|
4 |
|
5 |
+
Tags: social media,social media icons,social profile link,social floating icon,floating social media button,floating social media icon,social media button,facebook button,facebook icon,twitter button,youtube icon,youtube button
|
6 |
Requires at least: 2.8
|
7 |
Tested up to: 3.3.1
|
8 |
Stable tag: trunk
|
9 |
|
10 |
+
An easy to use plugin to show socialmedia icons which floats,you can configure icon design and size at plugin settings
|
11 |
|
12 |
== Description ==
|
13 |
|
16 |
|
17 |
[Click Here To See a Live Demo](http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/ "Floating Social Media Icon Demo")
|
18 |
|
19 |
+
[Click Here to Order Professional Installation/Integration Service](http://clients.acurax.com/cart.php?a=add&pid=19/ "Professional Integration Service")
|
20 |
+
|
21 |
**About**
|
22 |
|
23 |
This Plugin is developed and maintained by [Acurax International](http://www.acurax.com/ "Website Designing"). For any support, you may contact us [here](http://www.acurax.com/contact.php "Web Consulting").[Acurax](http://www.acurax.com/ "Acurax Web Design Development Service") Provide [Wordpress Theme Design](http://www.acurax.com/services/web-designing.php "Wordpress Theme Design Service") and [Development](http://www.acurax.com/services/web-development.php "Wordpress Development") Services.
|
24 |
|
25 |
+
**Plugin Video Tour**
|
26 |
+
'[youtube http://www.youtube.com/watch?v=OagiknITpmU]'
|
27 |
== Installation ==
|
28 |
|
29 |
Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.
|
32 |
'[youtube http://www.youtube.com/watch?v=OagiknITpmU]'
|
33 |
After Installation,Dont Forgot to Cast Your Vote on Combatibility :) Thanks for trying...
|
34 |
|
35 |
+
== Frequently Asked Questions ==
|
36 |
+
|
37 |
+
= How can i hide an icon? =
|
38 |
+
|
39 |
+
To hide an icon, Just dont give any value for that button link.. it will automatically gets hiden
|
40 |
+
|
41 |
+
= What to do if i cant see the icon even if i configured the plugin properly? =
|
42 |
+
|
43 |
+
It May cause of your themes layout. but if you are unsure then ,just let us know by <a href="http://www.acurax.com/contact.php" target="_blank">clicking here</a> and we will tell you why it happened and how to fix it.
|
44 |
+
|
45 |
+
= Why the icons are in a fixed position and not moving? =
|
46 |
+
|
47 |
+
Its because of your theme or any of the plugins installed.. which may make conflicts with our javascript codes. Please let us know the problems and we can take a look at it..
|
48 |
+
|
49 |
== Screenshots ==
|
50 |
|
51 |
1. Plugin Settings Page
|
52 |
2. Plugin in action, It will stay at bottom right with animated move even if we scroll.. watch video to see it in action..
|
53 |
3. Icon Settings Style/Theme and Size Selection Options
|
54 |
4. Social Media Profile Link Settings
|
55 |
+
5. Credit Link Enable Disable Option
|
56 |
+
|
57 |
+
== Upgrade Notice ==
|
58 |
+
|
59 |
+
= 1.0.5 =
|
60 |
+
* Major Fix For More Theme Compatibility
|
61 |
+
|
62 |
+
= 1.0.4 =
|
63 |
+
* Fixed Some Reported Bugs
|
64 |
+
|
65 |
+
= 1.0.3 =
|
66 |
+
* Major Fix to Support Older Versions of Wordpress
|
67 |
+
|
68 |
+
= 1.0.2 =
|
69 |
+
* Fixed Design Icon Clarity
|
70 |
+
|
71 |
+
== Changelog ==
|
72 |
+
|
73 |
+
= 1.0.5 =
|
74 |
+
* Major Fix For More Theme Compatibility
|
75 |
+
|
76 |
+
= 1.0.4 =
|
77 |
+
* Fixed Some Reported Bugs
|
78 |
+
|
79 |
+
= 1.0.3 =
|
80 |
+
* Major Fix to Support Older Versions of Wordpress
|
81 |
+
|
82 |
+
= 1.0.2 =
|
83 |
+
Fixed Design Icon Clarity
|
social-icon.php
CHANGED
@@ -35,10 +35,7 @@ update_option('acx_si_icon_size', $acx_si_icon_size);
|
|
35 |
$acx_si_credit = get_option('acx_si_credit');
|
36 |
$acx_si_icon_size = get_option('acx_si_icon_size');
|
37 |
if ($acx_si_credit == "") {
|
38 |
-
$acx_si_credit = "
|
39 |
-
}
|
40 |
-
if ($acx_si_credit == "") {
|
41 |
-
$acx_si_credit = "yes";
|
42 |
}
|
43 |
if ($acx_si_icon_size == "") {
|
44 |
$acx_si_icon_size = "32";
|
35 |
$acx_si_credit = get_option('acx_si_credit');
|
36 |
$acx_si_icon_size = get_option('acx_si_icon_size');
|
37 |
if ($acx_si_credit == "") {
|
38 |
+
$acx_si_credit = "no";
|
|
|
|
|
|
|
39 |
}
|
40 |
if ($acx_si_icon_size == "") {
|
41 |
$acx_si_icon_size = "32";
|