Version Description
- April 20, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)..
- Fixed Minor Styling Problem
- Fixed Icon Size Problem on Manual Icon Display via Php
Download this release
Release Info
Developer | Acurax |
Plugin | Social Media Flying Icons | Floating Social Media Icon |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1 to 1.1.1
- acurax-social-icon.php +2 -1
- function.php +156 -10
- readme.txt +54 -23
- screenshot-1.jpg +0 -0
- screenshot-1.png +0 -0
- screenshot-2.jpg +0 -0
- screenshot-2.png +0 -0
- screenshot-3.jpg +0 -0
- screenshot-3.png +0 -0
- screenshot-4.jpg +0 -0
- screenshot-4.png +0 -0
- social-icon.php +1 -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 |
*/
|
@@ -27,6 +27,7 @@ You should have received a copy of the GNU General Public License
|
|
27 |
along with this program; if not, write to the Free Software
|
28 |
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
29 |
*/
|
|
|
30 |
?>
|
31 |
<?php
|
32 |
//*************** Include JS in Header ********
|
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.1
|
8 |
Author URI: http://www.acurax.com
|
9 |
License: GPLv2 or later
|
10 |
*/
|
27 |
along with this program; if not, write to the Free Software
|
28 |
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
29 |
*/
|
30 |
+
define('ACX_SOCIALMEDIA_TOTAL_THEMES', 24);
|
31 |
?>
|
32 |
<?php
|
33 |
//*************** Include JS in Header ********
|
function.php
CHANGED
@@ -87,6 +87,48 @@ function acurax_si_simple($theme)
|
|
87 |
}
|
88 |
} //acurax_si_simple()
|
89 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
|
91 |
function acurax_icons()
|
92 |
{
|
@@ -263,15 +305,112 @@ function pbl_footer()
|
|
263 |
{
|
264 |
if($acx_si_credit == "yes")
|
265 |
{
|
266 |
-
echo "<div style='text-align:center;color:gray;font-family:arial;font-size:
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
268 |
title='Social Media Wordpress plugin'
|
269 |
-
style='text-align:center;color:gray;font-family:arial;
|
270 |
-
|
271 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
Design Company'
|
273 |
-
style='text-align:center;color:gray;font-family:arial;font-size:
|
274 |
-
Company</a
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
}
|
276 |
}
|
277 |
|
@@ -315,7 +454,7 @@ function DISPLAY_ACURAX_ICONS_SC($atts)
|
|
315 |
"size" => $acx_si_icon_size,
|
316 |
"autostart" => 'false'
|
317 |
), $atts));
|
318 |
-
if ($theme >
|
319 |
if (!is_numeric($theme)) { $theme = ""; }
|
320 |
if ($size > 55) { $size = $acx_si_icon_size; }
|
321 |
if (!is_numeric($size)) { $size = $acx_si_icon_size; }
|
@@ -342,9 +481,16 @@ function DISPLAY_ACURAX_ICONS_SC($atts)
|
|
342 |
|
343 |
function DISPLAY_ACURAX_ICONS()
|
344 |
{
|
345 |
-
global $acx_si_display
|
346 |
if ($acx_si_display != "auto" || $acx_si_display == "both")
|
347 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
echo "<div id='short_code_si_icon' align='center'>";
|
349 |
acurax_si_simple();
|
350 |
echo "</div>";
|
@@ -459,7 +605,7 @@ class Acx_Social_Icons_Widget extends WP_Widget
|
|
459 |
// Output the admin options form
|
460 |
function form($instance)
|
461 |
{
|
462 |
-
$total_themes =
|
463 |
$total_themes = $total_themes + 1;
|
464 |
// These are our default values
|
465 |
$defaults = array( 'title' => 'Social Media Icons','icon_size' => '32' );
|
@@ -583,7 +729,7 @@ document.subscription.submit();
|
|
583 |
}
|
584 |
</style><a name="cheat-sheet">
|
585 |
<div id="acx_optin"></a>
|
586 |
-
<form method="POST" name="subscription" action="http://www.acurax.com/
|
587 |
<input name="xyz_em_name" id="xyz_em_name" type="text" value="
|
588 |
<?php global $current_user; get_currentuserinfo();
|
589 |
if ($current_user->user_firstname != "" || $current_user->user_lastname != "")
|
87 |
}
|
88 |
} //acurax_si_simple()
|
89 |
|
90 |
+
function acx_theme_check_wp_head() {
|
91 |
+
$template_directory = get_template_directory();
|
92 |
+
// If header.php exists in the current theme, scan for "wp_head"
|
93 |
+
$file = $template_directory . '/header.php';
|
94 |
+
if (is_file($file)) {
|
95 |
+
$search_string = "wp_head";
|
96 |
+
$file_lines = @file($file);
|
97 |
+
|
98 |
+
foreach ($file_lines as $line) {
|
99 |
+
$searchCount = substr_count($line, $search_string);
|
100 |
+
if ($searchCount > 0) {
|
101 |
+
return true;
|
102 |
+
}
|
103 |
+
}
|
104 |
+
|
105 |
+
// wp_head() not found:
|
106 |
+
echo "<div class=\"highlight\" style=\"width: 99%; margin-top: 10px; margin-bottom: 10px; border: 1px solid darkred;\">" . "Your theme needs to be fixed for plugins to work (Especially Floating Social Media Icon). To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code><?php wp_head(); ?></code> just before the <code></head></code> line of your theme's <code>header.php</code> file." . "</div>";
|
107 |
+
}
|
108 |
+
} // theme check
|
109 |
+
add_action('admin_notices', 'acx_theme_check_wp_head');
|
110 |
+
|
111 |
+
|
112 |
+
function acx_theme_check_wp_footer() {
|
113 |
+
$template_directory = get_template_directory();
|
114 |
+
|
115 |
+
// If footer.php exists in the current theme, scan for "wp_footer"
|
116 |
+
$file = $template_directory . '/footer.php';
|
117 |
+
if (is_file($file)) {
|
118 |
+
$search_string = "wp_footer";
|
119 |
+
$file_lines = @file($file);
|
120 |
+
|
121 |
+
foreach ($file_lines as $line) {
|
122 |
+
$searchCount = substr_count($line, $search_string);
|
123 |
+
if ($searchCount > 0) {
|
124 |
+
return true;
|
125 |
+
}
|
126 |
+
}
|
127 |
+
|
128 |
+
// wp_footer() not found:
|
129 |
+
echo "<div class=\"highlight\" style=\"width: 99%; margin-top: 10px; margin-bottom: 10px; border: 1px solid darkred;\">" . "Your theme needs to be fixed for plugins to work (Especially Floating Social Media Icon). To fix your theme, use the <a href=\"theme-editor.php\">Theme Editor</a> to insert <code><?php wp_footer(); ?></code> just before the <code></body></code> line of your theme's <code>footer.php</code> file." . "</div>";
|
130 |
+
}
|
131 |
+
} add_action('admin_notices', 'acx_theme_check_wp_footer');
|
132 |
|
133 |
function acurax_icons()
|
134 |
{
|
305 |
{
|
306 |
if($acx_si_credit == "yes")
|
307 |
{
|
308 |
+
echo "<div style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>";
|
309 |
+
$acx_get_url = "http://";
|
310 |
+
$acx_get_url .= $_SERVER['HTTP_HOST'];
|
311 |
+
$acx_get_url .= $_SERVER['REQUEST_URI'];
|
312 |
+
$x = strlen($acx_get_url);
|
313 |
+
if(($x % 10) == 0)
|
314 |
+
{
|
315 |
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
316 |
title='Social Media Wordpress plugin'
|
317 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Animated Social
|
318 |
+
Media Icons</a> Powered by <a href='http://www.acurax.com/services/blog-design.php' target='_blank'
|
319 |
+
title='Wordpress Development Company'
|
320 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress
|
321 |
+
Development Company</a>";
|
322 |
+
} else if(($x % 9) == 0)
|
323 |
+
{
|
324 |
+
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
325 |
+
title='Floating Social Media Wordpress plugin'
|
326 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Floating Social
|
327 |
+
Media Icons</a> Powered by <a href='http://www.acurax.com/services/blog-design.php' target='_blank' title='Blog
|
328 |
Design Company'
|
329 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Blog
|
330 |
+
Designing Company</a>";
|
331 |
+
} else if(($x % 8) == 0)
|
332 |
+
{
|
333 |
+
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
334 |
+
title='Social Media Plugin'
|
335 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media
|
336 |
+
Integration</a> Powered by <a href='http://www.acurax.com/services/blog-design.php' target='_blank' title='Web
|
337 |
+
Design Company'
|
338 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress
|
339 |
+
Theme Designers</a>";
|
340 |
+
} else if(($x % 7) == 0)
|
341 |
+
{
|
342 |
+
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
343 |
+
title='Social Media Wordpress plugin'
|
344 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media
|
345 |
+
Icons</a> Powered by <a href='http://www.acurax.com/services/web-designing.php' target='_blank' title='Affordable
|
346 |
+
Website Designer'
|
347 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Website
|
348 |
+
Design Expert</a>";
|
349 |
+
} else if(($x % 6) == 0)
|
350 |
+
{
|
351 |
+
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
352 |
+
title='SocialMedia Wordpress plugin'
|
353 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media
|
354 |
+
Icons</a> Powered by <a href='http://www.acurax.com/services/web-development.php' target='_blank' title='Web
|
355 |
+
Development Company'
|
356 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Web
|
357 |
+
Development Company</a>";
|
358 |
+
} else if(($x % 5) == 0)
|
359 |
+
{
|
360 |
+
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
361 |
+
title='Social Media Wordpress plugin'
|
362 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media
|
363 |
+
Icons</a> Powered by <a href='http://www.acurax.com/services/website-redesign.php' target='_blank' title='Website
|
364 |
+
Redesign Experts'
|
365 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Website
|
366 |
+
Redesign Experts</a>";
|
367 |
+
} else if(($x % 4) == 0)
|
368 |
+
{
|
369 |
+
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
370 |
+
title='Social Media Wordpress plugin'
|
371 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media
|
372 |
+
Icons</a> Powered by <a
|
373 |
+
href='http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php' target='_blank'
|
374 |
+
title='Social Profile Design Experts'
|
375 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Social
|
376 |
+
Profile Design Experts</a>";
|
377 |
+
} else if(($x % 3) == 0)
|
378 |
+
{
|
379 |
+
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
380 |
+
title='Social Media Wordpress plugin'
|
381 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media
|
382 |
+
Icons</a> Powered by <a href='http://www.acurax.com/' target='_blank' title='Wordpress Development Company'
|
383 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress
|
384 |
+
Development Company</a>";
|
385 |
+
} else if(($x % 2) == 0)
|
386 |
+
{
|
387 |
+
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
388 |
+
title='Social Media Wordpress plugin'
|
389 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media
|
390 |
+
Icons</a> Powered by <a href='http://www.acurax.com/services/web-designing.php' target='_blank' title='Web Design
|
391 |
+
Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Web
|
392 |
+
Design Company</a>";
|
393 |
+
} else if(($x % 1) == 0)
|
394 |
+
{
|
395 |
+
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
396 |
+
title='Social Media Wordpress plugin'
|
397 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Animated Social
|
398 |
+
Media Icons</a> Powered by <a href='http://www.acurax.com/services/blog-design.php' target='_blank'
|
399 |
+
title='Wordpress Development Company'
|
400 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress
|
401 |
+
Development Company</a>";
|
402 |
+
} else
|
403 |
+
{
|
404 |
+
echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank'
|
405 |
+
title='Social Media Wordpress plugin'
|
406 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media
|
407 |
+
Icons</a> Powered by <a href='http://www.acurax.com/services/online-store-design-development.php' target='_blank'
|
408 |
+
title='Ecommerce Design Expert'
|
409 |
+
style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Ecommerce
|
410 |
+
Design Expert</a>";
|
411 |
+
}
|
412 |
+
// Ending Crediting
|
413 |
+
echo "</div>";
|
414 |
}
|
415 |
}
|
416 |
|
454 |
"size" => $acx_si_icon_size,
|
455 |
"autostart" => 'false'
|
456 |
), $atts));
|
457 |
+
if ($theme > ACX_SOCIALMEDIA_TOTAL_THEMES) { $theme = ""; }
|
458 |
if (!is_numeric($theme)) { $theme = ""; }
|
459 |
if ($size > 55) { $size = $acx_si_icon_size; }
|
460 |
if (!is_numeric($size)) { $size = $acx_si_icon_size; }
|
481 |
|
482 |
function DISPLAY_ACURAX_ICONS()
|
483 |
{
|
484 |
+
global $acx_si_display, $acx_si_icon_size;;
|
485 |
if ($acx_si_display != "auto" || $acx_si_display == "both")
|
486 |
{
|
487 |
+
echo "\n\n\n<!-- Starting Styles For Social Media Icon (PHP CODE) From Acurax International www.acurax.com
|
488 |
+
-->\n<style
|
489 |
+
type='text/css'>\n";
|
490 |
+
echo "#short_code_si_icon img \n{\n";
|
491 |
+
echo "width: " . $acx_si_icon_size . "px; \n}\n";
|
492 |
+
echo "</style>\n<!-- Ending Styles For Social Media Icon (PHP CODE) From Acurax International www.acurax.com
|
493 |
+
-->\n\n\n\n";
|
494 |
echo "<div id='short_code_si_icon' align='center'>";
|
495 |
acurax_si_simple();
|
496 |
echo "</div>";
|
605 |
// Output the admin options form
|
606 |
function form($instance)
|
607 |
{
|
608 |
+
$total_themes = ACX_SOCIALMEDIA_TOTAL_THEMES;
|
609 |
$total_themes = $total_themes + 1;
|
610 |
// These are our default values
|
611 |
$defaults = array( 'title' => 'Social Media Icons','icon_size' => '32' );
|
729 |
}
|
730 |
</style><a name="cheat-sheet">
|
731 |
<div id="acx_optin"></a>
|
732 |
+
<form method="POST" name="subscription" action="http://www.acurax.com/acx_images/plugins/newsletter-manager/subscription.php">
|
733 |
<input name="xyz_em_name" id="xyz_em_name" type="text" value="
|
734 |
<?php global $current_user; get_currentuserinfo();
|
735 |
if ($current_user->user_firstname != "" || $current_user->user_lastname != "")
|
readme.txt
CHANGED
@@ -4,56 +4,75 @@ Donate link:http://www.acurax.com/
|
|
4 |
|
5 |
Tags: social media,social media icon,pinterest,social profile link,social floating icon,floating social media button,social media url,social media button,facebook button,floating pinterest,twitter icon,social media widget,youtube icon,youtube button,facebook profile url,twitter url,social icon,google plus,googleplus button,google plus button,pinterest button
|
6 |
Requires at least: 2.8
|
7 |
-
Tested up to: 3.3.
|
8 |
Stable tag: trunk
|
9 |
|
10 |
-
Easy 2 use plugin 2 show socialmedia icons which floats,
|
11 |
-
Suport
|
12 |
== Description ==
|
13 |
|
14 |
-
Floating Social Media Icon is an easy to use plugin which allows you to configure essential social media profile links, like Twitter, Facebook, Pinterest, Youtube and Linkedin from plugin settings and you also have option to select an icon style from the icon packs available.
|
15 |
|
16 |
-
|
|
|
|
|
17 |
|
18 |
-
|
|
|
19 |
|
20 |
-
We will be upgrading plugin frequently with new set of icons. The social media icons will load in an animated style where it will stay and float on your website on blog's lower right corner.
|
21 |
|
22 |
-
* Multiple Social Media Widget Support (**Each Widget Can Have Seperate Icon Theme and Icon Size**)
|
23 |
|
24 |
-
|
|
|
25 |
|
26 |
-
|
27 |
|
28 |
-
|
|
|
|
|
|
|
|
|
29 |
|
30 |
-
|
31 |
|
32 |
-
|
|
|
33 |
|
34 |
-
|
35 |
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
-
|
39 |
-
|
40 |
-
* Added Pinterest Profile Support
|
41 |
-
|
42 |
-
In Short we can say, this is an ultimate social icon widget that will float on your visitors screen.. check screenshots and video for a clear understanding..
|
43 |
|
44 |
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")
|
45 |
|
46 |
[Click Here To See a Live Demo](http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/ "Floating Social Media Icon Demo")
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
[Click Here to Order Professional Installation/Integration Service](http://clients.acurax.com/link.php?id=4/ "Professional Integration Service")
|
49 |
|
50 |
**About**
|
51 |
|
52 |
-
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").
|
|
|
|
|
53 |
|
54 |
**Plugin Video Tour**
|
55 |
'[youtube http://www.youtube.com/watch?v=oK1iCywcjZY]'
|
56 |
-
|
|
|
|
|
57 |
|
58 |
== Installation ==
|
59 |
|
@@ -65,7 +84,9 @@ You need to go to Apperance >> Widgets to add "Acx Social Icon" Widget to your s
|
|
65 |
If you selected display mode as manual, you can use the shortcodes which is clearly mentioned in [Faq](http://wordpress.org/extend/plugins/floating-social-media-icon/faq/ "Frequently Asked Questions") section.
|
66 |
|
67 |
'[youtube http://www.youtube.com/watch?v=oK1iCywcjZY]'
|
68 |
-
|
|
|
|
|
69 |
|
70 |
After Installation,Dont Forgot to Cast Your Vote on Combatibility :) Thanks for trying...
|
71 |
|
@@ -145,6 +166,11 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
|
|
145 |
|
146 |
== Upgrade Notice ==
|
147 |
|
|
|
|
|
|
|
|
|
|
|
148 |
= 1.1 =
|
149 |
* April 06, 2012
|
150 |
* Added Code Security
|
@@ -189,6 +215,11 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
|
|
189 |
|
190 |
== Changelog ==
|
191 |
|
|
|
|
|
|
|
|
|
|
|
192 |
= 1.1 =
|
193 |
* April 06, 2012
|
194 |
* Added Code Security
|
4 |
|
5 |
Tags: social media,social media icon,pinterest,social profile link,social floating icon,floating social media button,social media url,social media button,facebook button,floating pinterest,twitter icon,social media widget,youtube icon,youtube button,facebook profile url,twitter url,social icon,google plus,googleplus button,google plus button,pinterest button
|
6 |
Requires at least: 2.8
|
7 |
+
Tested up to: 3.3.2
|
8 |
Stable tag: trunk
|
9 |
|
10 |
+
Easy 2 use plugin 2 show socialmedia icons which floats,Can configure social icon design,order and size at plugin settings.
|
11 |
+
Suport Widget & Shortcode
|
12 |
== Description ==
|
13 |
|
14 |
+
Floating Social Media Icon is an easy to use plugin which allows you to configure essential social media profile links, like Twitter, Facebook, Pinterest, Youtube and Linkedin from plugin settings and you also have option to select an icon style from the icon packs available.
|
15 |
|
16 |
+
You can make the icons to appear automatically or you can use widgets,
|
17 |
+
shortcode or php code to display icons where ever you like to show.
|
18 |
+
If you use the option to show it automatically.
|
19 |
|
20 |
+
The icons will fly from top left to bottom right and it will stay there
|
21 |
+
even if user scrolls the page, thus it floats
|
22 |
|
|
|
23 |
|
|
|
24 |
|
25 |
+
= Features that make this plugin an ultimate social media plugin =
|
26 |
+
.
|
27 |
|
28 |
+
Multiple Social Media Widget Support
|
29 |
|
30 |
+
Each Widget Can Have Seperate Icon Theme and Icon Size
|
31 |
+
|
32 |
+
Shortcode Support
|
33 |
+
|
34 |
+
Each Shortcode Support Seperate Icon Theme and Icon Size (check faq)
|
35 |
|
36 |
+
Icons in content
|
37 |
|
38 |
+
Can Show Social Media Icons in between content on post and pages in any size
|
39 |
+
and style plugin supports.
|
40 |
|
41 |
+
Other Features
|
42 |
|
43 |
+
One and Only Plugin With 20+ Icon Designs with Pinterest Support
|
44 |
+
Drag and Drop Reorder Icons
|
45 |
+
Easy to configure user interface
|
46 |
+
Icon Size Selection Support
|
47 |
+
Automatic Integration
|
48 |
+
Support Essential Social Medias Only
|
49 |
+
Pinterest Support
|
50 |
|
51 |
+
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.
|
|
|
|
|
|
|
|
|
52 |
|
53 |
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")
|
54 |
|
55 |
[Click Here To See a Live Demo](http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/ "Floating Social Media Icon Demo")
|
56 |
|
57 |
+
**Want More Features?**
|
58 |
+
|
59 |
+
[Click here to see the comparison between premium and free version.](http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/ "Premium Free Comparison")
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
[Click Here to Order Professional Installation/Integration Service](http://clients.acurax.com/link.php?id=4/ "Professional Integration Service")
|
64 |
|
65 |
**About**
|
66 |
|
67 |
+
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").
|
68 |
+
|
69 |
+
[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.
|
70 |
|
71 |
**Plugin Video Tour**
|
72 |
'[youtube http://www.youtube.com/watch?v=oK1iCywcjZY]'
|
73 |
+
|
74 |
+
NOTE: This video is old version video. Check Screenshots for
|
75 |
+
New Settings Page Option Preview.
|
76 |
|
77 |
== Installation ==
|
78 |
|
84 |
If you selected display mode as manual, you can use the shortcodes which is clearly mentioned in [Faq](http://wordpress.org/extend/plugins/floating-social-media-icon/faq/ "Frequently Asked Questions") section.
|
85 |
|
86 |
'[youtube http://www.youtube.com/watch?v=oK1iCywcjZY]'
|
87 |
+
|
88 |
+
NOTE: This video is old version video. Check Screenshots for
|
89 |
+
New Settings Page Option Preview.
|
90 |
|
91 |
After Installation,Dont Forgot to Cast Your Vote on Combatibility :) Thanks for trying...
|
92 |
|
166 |
|
167 |
== Upgrade Notice ==
|
168 |
|
169 |
+
= 1.1.1 =
|
170 |
+
* April 20, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)..
|
171 |
+
* Fixed Minor Styling Problem
|
172 |
+
* Fixed Icon Size Problem on Manual Icon Display via Php
|
173 |
+
|
174 |
= 1.1 =
|
175 |
* April 06, 2012
|
176 |
* Added Code Security
|
215 |
|
216 |
== Changelog ==
|
217 |
|
218 |
+
= 1.1.1 =
|
219 |
+
* April 20, 2012 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)..
|
220 |
+
* Fixed Minor Styling Problem
|
221 |
+
* Fixed Icon Size Problem on Manual Icon Display via Php
|
222 |
+
|
223 |
= 1.1 =
|
224 |
* April 06, 2012
|
225 |
* Added Code Security
|
screenshot-1.jpg
ADDED
Binary file
|
screenshot-1.png
DELETED
Binary file
|
screenshot-2.jpg
ADDED
Binary file
|
screenshot-2.png
DELETED
Binary file
|
screenshot-3.jpg
ADDED
Binary file
|
screenshot-3.png
DELETED
Binary file
|
screenshot-4.jpg
ADDED
Binary file
|
screenshot-4.png
DELETED
Binary file
|
social-icon.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/**********************************************/
|
3 |
-
$total_themes =
|
4 |
$total_themes = ($total_themes+1); // DO NOT EDIT THIS
|
5 |
/**********************************************/
|
6 |
if($_POST['acurax_social_icon_hidden'] == 'Y')
|
1 |
<?php
|
2 |
/**********************************************/
|
3 |
+
$total_themes = ACX_SOCIALMEDIA_TOTAL_THEMES; // DEFINE NUMBER OF THEMES HERE
|
4 |
$total_themes = ($total_themes+1); // DO NOT EDIT THIS
|
5 |
/**********************************************/
|
6 |
if($_POST['acurax_social_icon_hidden'] == 'Y')
|