Social Media Flying Icons | Floating Social Media Icon - Version 1.3.5

Version Description

  • June 04, 2014 | NOTE: Upgrading Will Not Make Any Changes to Settings/Configurations. Upgrade With Confidence :)
  • Added Option to Disable Floating Icons on Mobile Devices
  • Theme Warning Ignore Option
  • Added Troubleshooting Options
  • Improved User Interface
  • Stable Release
Download this release

Release Info

Developer Acurax
Plugin Icon 128x128 Social Media Flying Icons | Floating Social Media Icon
Version 1.3.5
Comparing to
See all releases

Code changes from version 1.3.4 to 1.3.5

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.3.4
8
  Author URI: http://www.acurax.com
9
  License: GPLv2 or later
10
  */
@@ -42,15 +42,17 @@ function enqueue_acx_social_icon_script()
42
  function AcuraxLinks($links, $file) {
43
  $plugin = plugin_basename(__FILE__);
44
  // create link
 
 
 
 
45
  if ($file == $plugin) {
46
 
47
  return array_merge( $links, array(
48
- '<div id="plugin_page_links"><a href="http://www.acurax.com?utm_source=wp&utm_medium=link&utm_campaign=plugin-page" target="_blank">' . __('Acurax International') . '</a>',
49
  '<a href="https://twitter.com/#!/acuraxdotcom" target="_blank">' . __('Acurax on Twitter') . '</a>',
50
  '<a href="http://www.facebook.com/AcuraxInternational" target="_blank">' . __('Acurax 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">' . __('Wordpress Theme Design') . '</a>',
52
- '<a href="http://www.acurax.com/services/blog-design.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page" target="_blank">' . __('Wordpress 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
  }
56
  return $links;
@@ -74,19 +76,31 @@ function acx_social_icon_premium()
74
  include('premium.php');
75
  }
76
 
 
 
 
 
 
77
  function acx_social_icon_misc()
78
  {
79
  include('fsmi-misc.php');
80
  }
81
 
 
 
82
  function acx_social_icon_admin_actions()
83
  {
84
- 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
 
85
 
86
  add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Premium', 'Premium', 8, 'Acurax-Social-Icons-Premium' ,'acx_social_icon_premium');
87
 
88
  add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Misc Settings', 'Misc', 8, 'Acurax-Social-Icons-Misc' ,'acx_social_icon_misc');
89
 
 
 
 
 
90
  add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Help and Support', 'Help', 8, 'Acurax-Social-Icons-Help' ,'acx_social_icon_help');
91
  }
92
 
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.3.5
8
  Author URI: http://www.acurax.com
9
  License: GPLv2 or later
10
  */
42
  function AcuraxLinks($links, $file) {
43
  $plugin = plugin_basename(__FILE__);
44
  // create link
45
+ $acx_installation_domain = $_SERVER['HTTP_HOST'];
46
+ $acx_installation_domain = str_replace("www.","",$acx_installation_domain);
47
+ $acx_installation_domain = str_replace(".","_",$acx_installation_domain);
48
+ if($acx_installation_domain == "") { $acx_installation_domain = "not_defined";}
49
  if ($file == $plugin) {
50
 
51
  return array_merge( $links, array(
52
+ '<div id="plugin_page_links"><a href="http://www.acurax.com?utm_source=wp&utm_medium=link&utm_campaign=plugin-page&ref=' . $acx_installation_domain . '" target="_blank">' . __('Acurax International') . '</a>',
53
  '<a href="https://twitter.com/#!/acuraxdotcom" target="_blank">' . __('Acurax on Twitter') . '</a>',
54
  '<a href="http://www.facebook.com/AcuraxInternational" target="_blank">' . __('Acurax on Facebook') . '</a>',
55
+ '<a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page&ref=' . $acx_installation_domain . '" target="_blank">' . __('Wordpress Expert Support') . '</a>'
 
 
56
  ));
57
  }
58
  return $links;
76
  include('premium.php');
77
  }
78
 
79
+ function acx_social_icon_troubleshoot()
80
+ {
81
+ include('troubleshoot.php');
82
+ }
83
+
84
  function acx_social_icon_misc()
85
  {
86
  include('fsmi-misc.php');
87
  }
88
 
89
+ $acx_si_fsmi_hide_expert_support_menu = get_option('acx_si_fsmi_hide_expert_support_menu');
90
+ if ($acx_si_fsmi_hide_expert_support_menu == "") { $acx_si_fsmi_hide_expert_support_menu = "no"; }
91
  function acx_social_icon_admin_actions()
92
  {
93
+ global $acx_si_fsmi_hide_expert_support_menu;
94
+ 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.png' ); // 8 for admin
95
 
96
  add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Premium', 'Premium', 8, 'Acurax-Social-Icons-Premium' ,'acx_social_icon_premium');
97
 
98
  add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Misc Settings', 'Misc', 8, 'Acurax-Social-Icons-Misc' ,'acx_social_icon_misc');
99
 
100
+ add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Troubleshooter', 'Troubleshoot', 8, 'Acurax-Social-Icons-Troubleshooter' ,'acx_social_icon_troubleshoot');
101
+ if($acx_si_fsmi_hide_expert_support_menu == "no") {
102
+ add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Expert Support', 'Expert Support', 8, 'Acurax-Social-Icons-Expert-Support' ,'acx_social_icon_troubleshoot');
103
+ }
104
  add_submenu_page('Acurax-Social-Icons-Settings', 'Acurax Social Icon Help and Support', 'Help', 8, 'Acurax-Social-Icons-Help' ,'acx_social_icon_help');
105
  }
106
 
dynamic_admin_style.css CHANGED
@@ -38,12 +38,12 @@ 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
  #floating-social-media-icon .plugin-title
49
  {
@@ -51,14 +51,13 @@ background: url("images/plugin_page_bg.png") repeat-x scroll 0 0 #FFFFFF;
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
  }
38
  }
39
  #plugin_page_links
40
  {
41
+ background: none repeat scroll 0 0 #87CEFA;
42
+ border-radius: 8px;
43
+ color: #2F4F4F;
44
+ min-height: 22px;
45
+ padding: 5px;
46
+ text-align: center;
47
  }
48
  #floating-social-media-icon .plugin-title
49
  {
51
  }
52
  #plugin_page_links a
53
  {
54
+ color: #2F4F4F;
55
+ font-family: arial;
56
+ font-size: 13px;
57
+ font-weight: bold;
58
+ padding: 2px 10px;
 
 
59
  }
60
  #plugin_page_links a:hover
61
  {
62
+ text-decoration:underline;
63
  }
fsmi-misc.php CHANGED
@@ -11,6 +11,12 @@ $acx_si_fsmi_float_fix = $_POST['acx_si_fsmi_float_fix'];
11
  update_option('acx_si_fsmi_float_fix', $acx_si_fsmi_float_fix);
12
  $acx_si_fsmi_hide_advert = $_POST['acx_si_fsmi_hide_advert'];
13
  update_option('acx_si_fsmi_hide_advert', $acx_si_fsmi_hide_advert);
 
 
 
 
 
 
14
  ?>
15
  <div class="updated"><p><strong><?php _e('Acurax Floating Social Icons Misc Settings Saved!.' ); ?></strong></p></div>
16
  <?php
@@ -22,37 +28,58 @@ $acx_si_fsmi_theme_warning_ignore = get_option('acx_si_fsmi_theme_warning_ignore
22
  $acx_si_fsmi_acx_service_banners = get_option('acx_si_fsmi_acx_service_banners');
23
  $acx_si_fsmi_float_fix = get_option('acx_si_fsmi_float_fix');
24
  $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
 
 
 
25
  // Setting Defaults
26
  if ($acx_si_fsmi_menu_highlight == "") { $acx_si_fsmi_menu_highlight = "yes"; }
27
  if ($acx_si_fsmi_theme_warning_ignore == "") { $acx_si_fsmi_theme_warning_ignore = "no"; }
28
  if ($acx_si_fsmi_acx_service_banners == "") { $acx_si_fsmi_acx_service_banners = "yes"; }
29
  if ($acx_si_fsmi_float_fix == "") { $acx_si_fsmi_float_fix = "no"; }
30
  if ($acx_si_fsmi_hide_advert == "") { $acx_si_fsmi_hide_advert = "no"; }
 
 
31
  } //Main else
32
  ?>
33
  <div class="wrap">
34
- <?php if ($acx_si_fsmi_acx_service_banners != "no") { ?>
35
- <p class="widefat" style="padding:8px;width:99%;height: 75px;">
36
- <b>Acurax Services >> </b><br>
37
- <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wtd" style="background:url(<?php echo plugins_url('images/wtd.jpg', __FILE__);?>);"></a>
38
- <a href="http://www.acurax.com/services/web-designing.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wd" style="background:url(<?php echo plugins_url('images/wd.jpg', __FILE__);?>);"></a>
39
- <a href="http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="spd" style="background:url(<?php echo plugins_url('images/spd.jpg', __FILE__);?>);"></a>
40
- <a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wrd" style="background:url(<?php echo plugins_url('images/wr.jpg', __FILE__);?>);"></a>
41
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  <?php } else { ?>
43
  <p class="widefat" style="padding:8px;width:99%;">
44
  <b>Acurax Services >> </b>
45
- <a href="http://www.acurax.com/services/blog-design.php" target="_blank">Wordpress Theme Design</a> |
46
- <a href="http://www.acurax.com/services/web-designing.php" target="_blank">Website Design</a> |
47
- <a href="http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php" target="_blank">Social Profile Design</a> |
48
- <a href="http://www.acurax.com/social-media-marketing-optimization/twitter-background-design.php" target="_blank">Twitter Background Design</a> |
49
- <a href="http://www.acurax.com/social-media-marketing-optimization/facebook-page-design.php" target="_blank">Facebook Page Design</a>
50
  </p>
51
  <?php } ?>
52
  <?php if($acx_si_fsmi_hide_advert == "no")
53
  { ?>
54
  <div id="acx_fsmi_premium">
55
- <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>
56
  <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>
57
  </div> <!-- acx_fsmi_premium -->
58
  <?php } ?>
@@ -80,6 +107,16 @@ if ($acx_si_fsmi_hide_advert == "") { $acx_si_fsmi_hide_advert = "no"; }
80
  </select>
81
  <?php _e("Would you like to hide the feature comparison advertisement of basic and premium version from plugin settings pages?" ); ?>
82
  </p>
 
 
 
 
 
 
 
 
 
 
83
  <p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Social Media Widget Theme Conflict Fix: " ); ?>
84
  <select name="acx_si_fsmi_float_fix">
85
  <option value="yes"<?php if ($acx_si_fsmi_float_fix == "yes") { echo 'selected="selected"'; } ?>>Enable </option>
@@ -96,8 +133,16 @@ if ($acx_si_fsmi_hide_advert == "") { $acx_si_fsmi_hide_advert = "no"; }
96
  <?php _e("If everything is working properly and still the plugin shows theme warning, you can set this to Yes" ); ?>
97
  </p>
98
 
 
 
 
 
 
 
 
 
99
  <p class="submit">
100
- <input type="submit" name="Submit" value="<?php _e('Save Settings', 'acx_si_config' ) ?>" />
101
  </p>
102
  </form>
103
  <hr/>
@@ -110,4 +155,5 @@ socialicons_comparison(1);
110
  <p class="widefat" style="padding:8px;width:99%;">
111
  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>
112
  </p>
 
113
  </div>
11
  update_option('acx_si_fsmi_float_fix', $acx_si_fsmi_float_fix);
12
  $acx_si_fsmi_hide_advert = $_POST['acx_si_fsmi_hide_advert'];
13
  update_option('acx_si_fsmi_hide_advert', $acx_si_fsmi_hide_advert);
14
+ $acx_si_fsmi_disable_mobile = $_POST['acx_si_fsmi_disable_mobile'];
15
+ update_option('acx_si_fsmi_disable_mobile', $acx_si_fsmi_disable_mobile);
16
+ $acx_si_fsmi_hide_expert_support_menu = $_POST['acx_si_fsmi_hide_expert_support_menu'];
17
+ update_option('acx_si_fsmi_hide_expert_support_menu', $acx_si_fsmi_hide_expert_support_menu);
18
+
19
+
20
  ?>
21
  <div class="updated"><p><strong><?php _e('Acurax Floating Social Icons Misc Settings Saved!.' ); ?></strong></p></div>
22
  <?php
28
  $acx_si_fsmi_acx_service_banners = get_option('acx_si_fsmi_acx_service_banners');
29
  $acx_si_fsmi_float_fix = get_option('acx_si_fsmi_float_fix');
30
  $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
31
+ $acx_si_fsmi_disable_mobile = get_option('acx_si_fsmi_disable_mobile');
32
+ $acx_si_fsmi_hide_expert_support_menu = get_option('acx_si_fsmi_hide_expert_support_menu');
33
+
34
  // Setting Defaults
35
  if ($acx_si_fsmi_menu_highlight == "") { $acx_si_fsmi_menu_highlight = "yes"; }
36
  if ($acx_si_fsmi_theme_warning_ignore == "") { $acx_si_fsmi_theme_warning_ignore = "no"; }
37
  if ($acx_si_fsmi_acx_service_banners == "") { $acx_si_fsmi_acx_service_banners = "yes"; }
38
  if ($acx_si_fsmi_float_fix == "") { $acx_si_fsmi_float_fix = "no"; }
39
  if ($acx_si_fsmi_hide_advert == "") { $acx_si_fsmi_hide_advert = "no"; }
40
+ if ($acx_si_fsmi_disable_mobile == "") { $acx_si_fsmi_disable_mobile = "no"; }
41
+ if ($acx_si_fsmi_hide_expert_support_menu == "") { $acx_si_fsmi_hide_expert_support_menu = "no"; }
42
  } //Main else
43
  ?>
44
  <div class="wrap">
45
+ <div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 100%;'>
46
+ <?php
47
+ $acx_si_fsmi_acx_service_banners = get_option('acx_si_fsmi_acx_service_banners');
48
+ if ($acx_si_fsmi_acx_service_banners != "no") { ?>
49
+ <div id="acx_ad_banners_fsmi">
50
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" class="acx_ad_fsmi_1">
51
+ <div class="acx_ad_fsmi_title">Wordpress Expert Support</div> <!-- acx_ad_fsmi_title -->
52
+ <div class="acx_ad_fsmi_desc">Troubleshoot WordPress site issues</div> <!-- acx_ad_fsmi_desc -->
53
+ </a> <!-- acx_ad_fsmi_1 -->
54
+
55
+ <a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" class="acx_ad_fsmi_1">
56
+ <div class="acx_ad_fsmi_title">Custom Theme Design</div> <!-- acx_ad_fsmi_title -->
57
+ <div class="acx_ad_fsmi_desc acx_ad_fsmi_desc2" style="padding-top: 4px; height: 41px; font-size: 13px; text-align: center;">Create, modify, or customise, themes</div> <!-- acx_ad_fsmi_desc -->
58
+ </a> <!-- acx_ad_fsmi_1 -->
59
+
60
+ <a href="http://www.acurax.com/services/web-development.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" class="acx_ad_fsmi_1">
61
+ <div class="acx_ad_fsmi_title">Plugin Development</div> <!-- acx_ad_fsmi_title -->
62
+ <div class="acx_ad_fsmi_desc acx_ad_fsmi_desc3" style="padding-top: 4px; height: 41px; font-size: 13px; text-align: center;">Custom plugin development according to your needs</div> <!-- acx_ad_fsmi_desc -->
63
+ </a> <!-- acx_ad_fsmi_1 -->
64
+
65
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" class="acx_ad_fsmi_1">
66
+ <div class="acx_ad_fsmi_title">Quick Support</div> <!-- acx_ad_fsmi_title -->
67
+ <div class="acx_ad_fsmi_desc acx_ad_fsmi_desc4" style="padding-top: 4px; height: 41px; font-size: 13px; text-align: center;">Explain errors and recommend solutions</div> <!-- acx_ad_fsmi_desc -->
68
+ </a> <!-- acx_ad_fsmi_1 -->
69
+ </div> <!-- acx_ad_banners_fsmi -->
70
  <?php } else { ?>
71
  <p class="widefat" style="padding:8px;width:99%;">
72
  <b>Acurax Services >> </b>
73
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=fsmi" target="_blank">Wordpress Expert Support</a> |
74
+ <a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=fsmi" target="_blank">Custom Theme Design</a> |
75
+ <a href="http://www.acurax.com/services/web-development.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=fsmi" target="_blank">Plugin Development</a> |
76
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=fsmi" target="_blank">Quick Support</a>
 
77
  </p>
78
  <?php } ?>
79
  <?php if($acx_si_fsmi_hide_advert == "no")
80
  { ?>
81
  <div id="acx_fsmi_premium">
82
+ <a style="margin: 8px 0px 0px 10px; float: left; font-size: 16px; font-weight: bold;" href="http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?utm_source=plugin&utm_medium=highlight&utm_campaign=fsmi" target="_blank">Fully Featured - Premium Floating Social Media Icon</a>
83
  <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>
84
  </div> <!-- acx_fsmi_premium -->
85
  <?php } ?>
107
  </select>
108
  <?php _e("Would you like to hide the feature comparison advertisement of basic and premium version from plugin settings pages?" ); ?>
109
  </p>
110
+
111
+ <p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Hide Expert Support Menu?: " ); ?>
112
+ <select name="acx_si_fsmi_hide_expert_support_menu">
113
+ <option value="yes"<?php if ($acx_si_fsmi_hide_expert_support_menu == "yes") { echo 'selected="selected"'; } ?>>Yes </option>
114
+ <option value="no"<?php if ($acx_si_fsmi_hide_expert_support_menu == "no") { echo 'selected="selected"'; } ?>>No </option>
115
+ </select>
116
+ <?php _e("Would you like to hide the expert support sub menu?" ); ?>
117
+ </p>
118
+
119
+
120
  <p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Social Media Widget Theme Conflict Fix: " ); ?>
121
  <select name="acx_si_fsmi_float_fix">
122
  <option value="yes"<?php if ($acx_si_fsmi_float_fix == "yes") { echo 'selected="selected"'; } ?>>Enable </option>
133
  <?php _e("If everything is working properly and still the plugin shows theme warning, you can set this to Yes" ); ?>
134
  </p>
135
 
136
+ <p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Disable Floating Social Media Icon on Mobile Devices?" ); ?>
137
+ <select name="acx_si_fsmi_disable_mobile">
138
+ <option value="yes"<?php if ($acx_si_fsmi_disable_mobile == "yes") { echo 'selected="selected"'; } ?>>Yes </option>
139
+ <option value="no"<?php if ($acx_si_fsmi_disable_mobile == "no") { echo 'selected="selected"'; } ?>>No </option>
140
+ </select>
141
+ <?php _e("If the floating icon making issues on mobile devices, then you can hide the floating icons on mobile devices by setting this value to Yes" ); ?>
142
+ </p>
143
+
144
  <p class="submit">
145
+ <input type="submit" name="Submit" class="button" value="<?php _e('Save Settings', 'acx_si_config' ) ?>" />
146
  </p>
147
  </form>
148
  <hr/>
155
  <p class="widefat" style="padding:8px;width:99%;">
156
  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>
157
  </p>
158
+ </div>
159
  </div>
function.php CHANGED
@@ -16,6 +16,7 @@ $acx_si_icon_size = get_option('acx_si_icon_size');
16
  $acx_si_fsmi_menu_highlight = get_option('acx_si_fsmi_menu_highlight');
17
  $acx_si_fsmi_float_fix = get_option('acx_si_fsmi_float_fix');
18
  $acx_si_fsmi_theme_warning_ignore = get_option('acx_si_fsmi_theme_warning_ignore');
 
19
  // *****************************************************
20
  // Check Credit Link
21
  function enqueue_acx_si_style()
@@ -311,38 +312,42 @@ function pbl_footer()
311
  $acx_get_url = "http://";
312
  $acx_get_url .= $_SERVER['HTTP_HOST'];
313
  $acx_get_url .= $_SERVER['REQUEST_URI'];
 
 
 
 
314
  $x = strlen($acx_get_url);
315
  if(($x % 10) == 0)
316
  {
317
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Animated Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/blog-design.php?utm_source=blink&utm_medium=link&utm_campaign=footer' target='_blank' title='Wordpress Development Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress Development Company</a>";
318
  } else if(($x % 9) == 0)
319
  {
320
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Floating Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Floating Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/blog-design.php?utm_source=blink&utm_medium=link&utm_campaign=footer' target='_blank' title='Blog Design Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Blog Designing Company</a>";
321
  } else if(($x % 8) == 0)
322
  {
323
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Integration</a> Powered by <a href='http://www.acurax.com/services/blog-design.php?utm_source=blink&utm_medium=link&utm_campaign=footer' target='_blank' title='Web Design Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress Theme Designers</a>";
324
  } else if(($x % 7) == 0)
325
  {
326
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/web-designing.php?utm_source=blink&utm_medium=link&utm_campaign=footer' target='_blank' title='Affordable Website Designer' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Website Design Expert</a>";
327
  } else if(($x % 6) == 0)
328
  {
329
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='SocialMedia Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/web-development.php?utm_source=blink&utm_medium=link&utm_campaign=footer' target='_blank' title='Web Development Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Web Development Company</a>";} else if(($x % 5) == 0)
330
  {
331
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/website-redesign.php?utm_source=blink&utm_medium=link&utm_campaign=footer' target='_blank' title='Website Redesign Experts' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Website Redesign Experts</a>";} else if(($x % 4) == 0)
332
  {
333
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php?utm_source=blink&utm_medium=link&utm_campaign=footer' target='_blank' title='Social Profile Design Experts' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Social Profile Design Experts</a>";
334
  } else if(($x % 3) == 0)
335
  {
336
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/' target='_blank' title='Wordpress Development Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress Development Company</a>";
337
  } else if(($x % 2) == 0)
338
  {
339
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/web-designing.php?utm_source=blink&utm_medium=link&utm_campaign=footer' target='_blank' title='Web Design Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Web Design Company</a>";
340
  } else if(($x % 1) == 0)
341
  {
342
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Animated Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=blink&utm_medium=link&utm_campaign=footer' target='_blank' title='Wordpress Development Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress Development Company</a>";
343
  } else
344
  {
345
- echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/online-store-design-development.php?utm_source=blink&utm_medium=link&utm_campaign=footer' target='_blank' title='Ecommerce Design Expert' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Ecommerce Design Expert</a>";
346
  }
347
  // Ending Crediting
348
  echo "</div>";
@@ -351,9 +356,8 @@ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-
351
  } add_action('wp_footer', 'pbl_footer'); // pbl_footer
352
  function extra_style_acx_icon() // updated added class acx_fsmi_float_fix support
353
  {
354
- global $acx_si_icon_size;
355
- global $acx_si_fsmi_float_fix;
356
- global $acx_si_display;
357
  echo "\n\n\n<!-- Starting Styles For Social Media Icon From Acurax International www.acurax.com -->\n<style type='text/css'>\n";
358
  echo "#divBottomRight img \n{\n";
359
  echo "width: " . $acx_si_icon_size . "px; \n}\n";
@@ -369,7 +373,11 @@ function extra_style_acx_icon() // updated added class acx_fsmi_float_fix suppor
369
  echo ".acx_fsmi_float_fix a \n{\n";
370
  echo "display:inline-block; \n}\n";
371
  }
372
-
 
 
 
 
373
 
374
  echo "</style>\n<!-- Ending Styles For Social Media Icon From Acurax International www.acurax.com -->\n\n\n\n";
375
  } add_action('admin_head', 'extra_style_acx_icon'); // ADMIN
@@ -480,7 +488,7 @@ function acx_fsmi_si_pluign_finish_version_update()
480
  </div>';
481
  }
482
  $acx_fsmi_si_current_version = get_option('acx_fsmi_si_current_version');
483
- if($acx_fsmi_si_current_version != '1.3.4') // Current Version
484
  {
485
  if (get_option('social_icon_array_order') != "")
486
  {
@@ -661,235 +669,333 @@ function socialicons_comparison($ad=2)
661
  {
662
  $ad_1 = '
663
  </hr>
664
- <a name="compare"></a>
665
- <div id="fsmi_landing_holder">
666
- <div id="fsmi_lp_compare">
667
- <div class="row_1">
668
- <div class="fsmi_lp_compare_row_1_1"></div> <!-- fsmi_lp_compare_row_1_1 -->
669
- <div id="fsmi_lp_f_group">
670
- <div class="left" style="padding-top: 173px;padding-bottom: 172px;">
671
- Display
672
- </div> <!-- left -->
673
- <div class="right">
674
- <div class="fsmi_lp_compare_row_1_features">More Sharp Quality Icons</div> <!-- fsmi_lp_compare_row_1_features -->
675
- <div class="fsmi_lp_compare_row_1_features">20+ Icon Theme/Style</div> <!-- fsmi_lp_compare_row_1_features -->
676
- <div class="fsmi_lp_compare_row_1_features">Can Choose Icon Theme/Style</div> <!-- fsmi_lp_compare_row_1_features -->
677
- <div class="fsmi_lp_compare_row_1_features">Can Choose Icon Size</div> <!-- fsmi_lp_compare_row_1_features -->
678
- <div class="fsmi_lp_compare_row_1_features">Automatic/Manual Integration</div> <!-- fsmi_lp_compare_row_1_features -->
679
- <div class="fsmi_lp_compare_row_1_features">Set MouseOver text for each icon in Share Mode</div> <!-- fsmi_lp_compare_row_1_features -->
680
- <div class="fsmi_lp_compare_row_1_features">Set MouseOver text for each icon in Profile Link Mode</div> <!-- fsmi_lp_compare_row_1_features -->
681
- <div class="fsmi_lp_compare_row_1_features">Option to HIDE Invididual Share Icon</div> <!-- fsmi_lp_compare_row_1_features -->
682
- <div class="fsmi_lp_compare_row_1_features highlighted">Set Floating Icons in Vertical</div> <!-- fsmi_lp_compare_row_1_features -->
683
- <div class="fsmi_lp_compare_row_1_features highlighted">Define how many icons in 1 row</div> <!-- fsmi_lp_compare_row_1_features -->
684
- <div class="fsmi_lp_compare_row_1_features highlighted">Add Custom Icons</div> <!-- fsmi_lp_compare_row_1_features -->
685
- </div> <!-- right -->
686
- </div> <!-- fsmi_lp_f_group -->
687
- <div id="fsmi_lp_f_group">
688
- <div class="left" style="padding-top: 74px;padding-bottom: 74px;">
689
- Icon Function
690
- </div> <!-- left -->
691
- <div class="right">
692
- <div class="fsmi_lp_compare_row_1_features">Link to Social Media Profile</div> <!-- fsmi_lp_compare_row_1_features -->
693
- <div class="fsmi_lp_compare_row_1_features highlighted">Share On Social Media</div> <!-- fsmi_lp_compare_row_1_features -->
694
- <div class="fsmi_lp_compare_row_1_features">Show Share on Posts/Pages</div> <!-- fsmi_lp_compare_row_1_features -->
695
- <div class="fsmi_lp_compare_row_1_features highlighted">Efficient Image Picker For Pinterest</div> <!-- fsmi_lp_compare_row_1_features -->
696
- <div class="fsmi_lp_compare_row_1_features highlighted">Define Social Media Meta for Each Page/Post</div> <!-- fsmi_lp_compare_row_1_features -->
697
- </div> <!-- right -->
698
- </div> <!-- fsmi_lp_f_group -->
699
- <div id="fsmi_lp_f_group">
700
- <div class="left" style="padding-top: 23px;padding-bottom: 25px;">
701
- Animation
702
- </div> <!-- left -->
703
- <div class="right">
704
- <div class="fsmi_lp_compare_row_1_features">Fly Animation</div> <!-- fsmi_lp_compare_row_1_features -->
705
- <div class="fsmi_lp_compare_row_1_features highlighted">Mouse Over Effects</div> <!-- fsmi_lp_compare_row_1_features -->
706
- </div> <!-- right -->
707
- </div> <!-- fsmi_lp_f_group -->
708
- <div id="fsmi_lp_f_group">
709
- <div class="left" style="padding-top: 65px;padding-bottom: 65px;">
710
- Fly Animation Repeat Interval
711
- </div> <!-- left -->
712
- <div class="right">
713
- <div class="fsmi_lp_compare_row_1_features">Based On Time in Seconds</div> <!-- fsmi_lp_compare_row_1_features -->
714
- <div class="fsmi_lp_compare_row_1_features highlighted">Based On Time in Minutes</div> <!-- fsmi_lp_compare_row_1_features -->
715
- <div class="fsmi_lp_compare_row_1_features">Based On Time in Hours</div> <!-- fsmi_lp_compare_row_1_features -->
716
- <div class="fsmi_lp_compare_row_1_features">Based on Page Views</div> <!-- fsmi_lp_compare_row_1_features -->
717
- <div class="fsmi_lp_compare_row_1_features">Based On Page Views and Time</div> <!-- fsmi_lp_compare_row_1_features -->
718
- </div> <!-- right -->
719
- </div> <!-- fsmi_lp_f_group -->
720
- <div id="fsmi_lp_f_group">
721
- <div class="left highlighted" style="padding-top: 24px;padding-bottom: 24px;">
722
- Multiple Fly Animation
723
- </div> <!-- left -->
724
- <div class="right">
725
- <div class="fsmi_lp_compare_row_1_features">Can Choose Fly Start Position</div> <!-- fsmi_lp_compare_row_1_features -->
726
- <div class="fsmi_lp_compare_row_1_features">Can Choose Fly End Position</div> <!-- fsmi_lp_compare_row_1_features -->
727
- </div> <!-- right -->
728
- </div> <!-- fsmi_lp_f_group -->
729
- <div id="fsmi_lp_f_group">
730
- <div class="left" style="padding-top: 40px;padding-bottom: 41px;">
731
- Easy to Configure
732
- </div> <!-- left -->
733
- <div class="right">
734
- <div class="fsmi_lp_compare_row_1_features">Ajax Based Settings Page</div> <!-- fsmi_lp_compare_row_1_features -->
735
- <div class="fsmi_lp_compare_row_1_features">Drag & Drop Reorder Icons</div> <!-- fsmi_lp_compare_row_1_features -->
736
- <div class="fsmi_lp_compare_row_1_features">Easy to Configure</div> <!-- fsmi_lp_compare_row_1_features -->
737
- </div> <!-- right -->
738
- </div> <!-- fsmi_lp_f_group -->
739
- <div id="fsmi_lp_f_group">
740
- <div class="left" style="padding-top: 90px;padding-bottom: 90px;">
741
- Widget Support
742
- </div> <!-- left -->
743
- <div class="right">
744
- <div class="fsmi_lp_compare_row_1_features">Multiple Widgets</div> <!-- fsmi_lp_compare_row_1_features -->
745
- <div class="fsmi_lp_compare_row_1_features">Seperate Icon Style/Theme For Each</div> <!-- fsmi_lp_compare_row_1_features -->
746
- <div class="fsmi_lp_compare_row_1_features">Seperate Icon Size For Each</div> <!-- fsmi_lp_compare_row_1_features -->
747
- <div class="fsmi_lp_compare_row_1_features">Set whether the icons to Link Profiles/SHARE</div> <!-- fsmi_lp_compare_row_1_features -->
748
- <div class="fsmi_lp_compare_row_1_features highlighted">Seperate Mouse Over Multiple Animation for Each</div> <!-- fsmi_lp_compare_row_1_features -->
749
- <div class="fsmi_lp_compare_row_1_features">Seperate Default Opacity for Each</div> <!-- fsmi_lp_compare_row_1_features -->
750
- </div> <!-- right -->
751
- </div> <!-- fsmi_lp_f_group -->
752
- <div id="fsmi_lp_f_group">
753
- <div class="left" style="padding-top: 90px;padding-bottom: 90px;">
754
- Shortcode Support
755
- </div> <!-- left -->
756
- <div class="right">
757
- <div class="fsmi_lp_compare_row_1_features">Multiple Instances</div> <!-- fsmi_lp_compare_row_1_features -->
758
- <div class="fsmi_lp_compare_row_1_features">Seperate Icon Style/Theme For Each</div> <!-- fsmi_lp_compare_row_1_features -->
759
- <div class="fsmi_lp_compare_row_1_features highlighted">Seperate Icon Size For Each</div> <!-- fsmi_lp_compare_row_1_features -->
760
- <div class="fsmi_lp_compare_row_1_features">Set whether the icons to Link Profiles/SHARE</div> <!-- fsmi_lp_compare_row_1_features -->
761
- <div class="fsmi_lp_compare_row_1_features">Seperate Mouse Over Multiple Animation for Each</div> <!-- fsmi_lp_compare_row_1_features -->
762
- <div class="fsmi_lp_compare_row_1_features">Seperate Default Opacity for Each</div> <!-- fsmi_lp_compare_row_1_features -->
763
- </div> <!-- right -->
764
- </div> <!-- fsmi_lp_f_group -->
765
- <div id="fsmi_lp_f_group">
766
- <div class="left" style="padding-top: 106px;padding-bottom: 107px;border-bottom:0px;">
767
- PHP Code Support
768
- </div> <!-- left -->
769
- <div class="right">
770
- <div class="fsmi_lp_compare_row_1_features">Multiple Instances</div> <!-- fsmi_lp_compare_row_1_features -->
771
- <div class="fsmi_lp_compare_row_1_features">Use Outside Loop</div> <!-- fsmi_lp_compare_row_1_features -->
772
- <div class="fsmi_lp_compare_row_1_features">Seperate Icon Style/Theme For Each</div> <!-- fsmi_lp_compare_row_1_features -->
773
- <div class="fsmi_lp_compare_row_1_features">Seperate Icon Size For Each</div> <!-- fsmi_lp_compare_row_1_features -->
774
- <div class="fsmi_lp_compare_row_1_features highlighted">Set whether the icons to Link Profiles/SHARE</div> <!-- fsmi_lp_compare_row_1_features -->
775
- <div class="fsmi_lp_compare_row_1_features">Seperate Mouse Over Multiple Animation for Each</div> <!-- fsmi_lp_compare_row_1_features -->
776
- <div class="fsmi_lp_compare_row_1_features" style="border-bottom:0px;">Seperate Default Opacity for Each</div> <!-- fsmi_lp_compare_row_1_features -->
777
- </div> <!-- right -->
778
- </div> <!-- fsmi_lp_f_group -->
779
- </div> <!-- row_1 -->
780
- <div class="row_2">
781
- <div class="fsmi_lp_compare_row_2_1"></div> <!-- fsmi_lp_compare_row_2_1 -->
782
- <div class="row_2_border">
783
- <div class="fsmi_lp_compare_row_2_2"></div> <!-- fsmi_lp_compare_row_2_1 -->
784
- <div class="n"></div>
785
- <div class="y"></div>
786
- <div class="y"></div>
787
- <div class="y"></div>
788
- <div class="y"></div>
789
- <div class="n"></div>
790
- <div class="n"></div>
791
- <div class="n"></div>
792
- <div class="n"></div>
793
- <div class="n"></div>
794
- <div class="n"></div>
795
- <div class="y"></div>
796
- <div class="n"></div>
797
- <div class="n"></div>
798
- <div class="n"></div>
799
- <div class="n"></div>
800
- <div class="y"></div>
801
- <div class="n"></div>
802
- <div class="n"></div>
803
- <div class="n"></div>
804
- <div class="n"></div>
805
- <div class="n"></div>
806
- <div class="n"></div>
807
- <div class="n"></div>
808
- <div class="n"></div>
809
- <div class="n"></div>
810
- <div class="y"></div>
811
- <div class="n"></div>
812
- <div class="y"></div>
813
- <div class="y"></div>
814
- <div class="y"></div>
815
- <div class="n"></div>
816
- <div class="n"></div>
817
- <div class="n"></div>
818
- <div class="y"></div>
819
- <div class="y"></div>
820
- <div class="y"></div>
821
- <div class="n"></div>
822
- <div class="n"></div>
823
- <div class="n"></div>
824
- <div class="y"></div>
825
- <div class="y"></div>
826
- <div class="y"></div>
827
- <div class="y"></div>
828
- <div class="n"></div>
829
- <div class="n"></div>
830
- <div class="n" style="border-bottom:0px;"></div>
831
- </div> <!-- row_2_border -->
832
- </div> <!-- row_2 -->
833
- <div class="row_3">
834
- <div class="fsmi_lp_compare_row_3_1"></div> <!-- fsmi_lp_compare_row_3_1 -->
835
- <div class="row_3_shadow">
836
- <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_settings_table&utm_medium=link&utm_campaign=compare_buynow" target="_blank"><div class="fsmi_lp_compare_row_3_2"></div></a> <!-- fsmi_lp_compare_row_3_2 -->
837
- <div class="y"></div> <!-- y -->
838
- <div class="y"></div> <!-- y -->
839
- <div class="y"></div> <!-- y -->
840
- <div class="y"></div> <!-- y -->
841
- <div class="y"></div> <!-- y -->
842
- <div class="y"></div> <!-- y -->
843
- <div class="y"></div> <!-- y -->
844
- <div class="y"></div> <!-- y -->
845
- <div class="y"></div> <!-- y -->
846
- <div class="y"></div> <!-- y -->
847
- <div class="y"></div> <!-- y -->
848
- <div class="y"></div> <!-- y -->
849
- <div class="y"></div> <!-- y -->
850
- <div class="y"></div> <!-- y -->
851
- <div class="y"></div> <!-- y -->
852
- <div class="y"></div> <!-- y -->
853
- <div class="y"></div> <!-- y -->
854
- <div class="y"></div> <!-- y -->
855
- <div class="y"></div> <!-- y -->
856
- <div class="y"></div> <!-- y -->
857
- <div class="y"></div> <!-- y -->
858
- <div class="y"></div> <!-- y -->
859
- <div class="y"></div> <!-- y -->
860
- <div class="y"></div> <!-- y -->
861
- <div class="y"></div> <!-- y -->
862
- <div class="y"></div> <!-- y -->
863
- <div class="y"></div> <!-- y -->
864
- <div class="y"></div> <!-- y -->
865
- <div class="y"></div> <!-- y -->
866
- <div class="y"></div> <!-- y -->
867
- <div class="y"></div> <!-- y -->
868
- <div class="y"></div> <!-- y -->
869
- <div class="y"></div> <!-- y -->
870
- <div class="y"></div> <!-- y -->
871
- <div class="y"></div> <!-- y -->
872
- <div class="y"></div> <!-- y -->
873
- <div class="y"></div> <!-- y -->
874
- <div class="y"></div> <!-- y -->
875
- <div class="y"></div> <!-- y -->
876
- <div class="y"></div> <!-- y -->
877
- <div class="y"></div> <!-- y -->
878
- <div class="y"></div> <!-- y -->
879
- <div class="y"></div> <!-- y -->
880
- <div class="y"></div> <!-- y -->
881
- <div class="y"></div> <!-- y -->
882
- <div class="y"></div> <!-- y -->
883
- <div class="y" style="border-bottom:0px;"></div> <!-- y -->
884
- </div> <!-- row_3_shadow -->
885
- </div> <!-- row_3 -->
886
- </div> <!-- fsmi_lp_compare -->
887
- <div id="fsmi_lp_shadow"></div> <!-- fsmi_lp_shadow -->
888
- <!-- 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 -->
889
- </div> <!-- fsmi_landing_holder -->
890
- <div id="ad_fsmi_2_button_order" style="float:left;margin-left: 445px;">
891
- <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_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 -->
892
- ';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
893
  $ad_2='<div id="ad_fsmi_2"> <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_settings&utm_medium=banner&utm_campaign=plugin_enjoy" target="_blank"><div id="ad_fsmi_2_button"></div></a> </div> <!-- ad_fsmi_2 --><br>
894
  <div id="ad_fsmi_2_button_order">
895
  <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_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 --> ';
@@ -908,4 +1014,46 @@ if (current_user_can('manage_options')) {
908
  }
909
  die(); // this is required to return a proper result
910
  } add_action('wp_ajax_acx_fsmi_saveorder', 'acx_fsmi_saveorder_callback');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
911
  ?>
16
  $acx_si_fsmi_menu_highlight = get_option('acx_si_fsmi_menu_highlight');
17
  $acx_si_fsmi_float_fix = get_option('acx_si_fsmi_float_fix');
18
  $acx_si_fsmi_theme_warning_ignore = get_option('acx_si_fsmi_theme_warning_ignore');
19
+ $acx_si_fsmi_disable_mobile = get_option('acx_si_fsmi_disable_mobile');
20
  // *****************************************************
21
  // Check Credit Link
22
  function enqueue_acx_si_style()
312
  $acx_get_url = "http://";
313
  $acx_get_url .= $_SERVER['HTTP_HOST'];
314
  $acx_get_url .= $_SERVER['REQUEST_URI'];
315
+ $acx_installation_domain = $_SERVER['HTTP_HOST'];
316
+ $acx_installation_domain = str_replace("www.","",$acx_installation_domain);
317
+ $acx_installation_domain = str_replace(".","_",$acx_installation_domain);
318
+ if($acx_installation_domain == "") { $acx_installation_domain = "not_defined";}
319
  $x = strlen($acx_get_url);
320
  if(($x % 10) == 0)
321
  {
322
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?ref=" . $acx_installation_domain . "' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Animated Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/blog-design.php?utm_source=blink&utm_medium=link&utm_campaign=footer&ref=" . $acx_installation_domain . "' target='_blank' title='Wordpress Development Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress Development Company</a>";
323
  } else if(($x % 9) == 0)
324
  {
325
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?ref=" . $acx_installation_domain . "' target='_blank' title='Floating Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Floating Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/blog-design.php?utm_source=blink&utm_medium=link&utm_campaign=footer&ref=" . $acx_installation_domain . "' target='_blank' title='Blog Design Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Blog Designing Company</a>";
326
  } else if(($x % 8) == 0)
327
  {
328
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?ref=" . $acx_installation_domain . "' target='_blank' title='Social Media Plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Integration</a> Powered by <a href='http://www.acurax.com/services/blog-design.php?utm_source=blink&utm_medium=link&utm_campaign=footer&ref=" . $acx_installation_domain . "' target='_blank' title='Web Design Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress Theme Designers</a>";
329
  } else if(($x % 7) == 0)
330
  {
331
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?ref=" . $acx_installation_domain . "' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/web-designing.php?utm_source=blink&utm_medium=link&utm_campaign=footer&ref=" . $acx_installation_domain . "' target='_blank' title='Affordable Website Designer' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Website Design Expert</a>";
332
  } else if(($x % 6) == 0)
333
  {
334
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?ref=" . $acx_installation_domain . "' target='_blank' title='SocialMedia Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/web-development.php?utm_source=blink&utm_medium=link&utm_campaign=footer&ref=" . $acx_installation_domain . "' target='_blank' title='Web Development Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Web Development Company</a>";} else if(($x % 5) == 0)
335
  {
336
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?ref=" . $acx_installation_domain . "' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/website-redesign.php?utm_source=blink&utm_medium=link&utm_campaign=footer&ref=" . $acx_installation_domain . "' target='_blank' title='Website Redesign Experts' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Website Redesign Experts</a>";} else if(($x % 4) == 0)
337
  {
338
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?ref=" . $acx_installation_domain . "' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php?utm_source=blink&utm_medium=link&utm_campaign=footer&ref=" . $acx_installation_domain . "' target='_blank' title='Social Profile Design Experts' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Social Profile Design Experts</a>";
339
  } else if(($x % 3) == 0)
340
  {
341
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?ref=" . $acx_installation_domain . "' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/?ref=" . $acx_installation_domain . "' target='_blank' title='Wordpress Development Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress Development Company</a>";
342
  } else if(($x % 2) == 0)
343
  {
344
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?ref=" . $acx_installation_domain . "' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/web-designing.php?utm_source=blink&utm_medium=link&utm_campaign=footer&ref=" . $acx_installation_domain . "' target='_blank' title='Web Design Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Web Design Company</a>";
345
  } else if(($x % 1) == 0)
346
  {
347
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?ref=" . $acx_installation_domain . "' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Animated Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=blink&utm_medium=link&utm_campaign=footer&ref=" . $acx_installation_domain . "' target='_blank' title='Wordpress Development Company' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Wordpress Development Company</a>";
348
  } else
349
  {
350
+ echo "<a href='http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?ref=" . $acx_installation_domain . "' target='_blank' title='Social Media Wordpress plugin' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Social Media Icons</a> Powered by <a href='http://www.acurax.com/services/online-store-design-development.php?utm_source=blink&utm_medium=link&utm_campaign=footer&ref=" . $acx_installation_domain . "' target='_blank' title='Ecommerce Design Expert' style='text-align:center;color:gray;font-family:arial;font-size:11px;text-decoration:none;'>Acurax Ecommerce Design Expert</a>";
351
  }
352
  // Ending Crediting
353
  echo "</div>";
356
  } add_action('wp_footer', 'pbl_footer'); // pbl_footer
357
  function extra_style_acx_icon() // updated added class acx_fsmi_float_fix support
358
  {
359
+ global $acx_si_icon_size, $acx_si_fsmi_float_fix, $acx_si_display, $acx_si_fsmi_disable_mobile;
360
+ if($acx_si_fsmi_disable_mobile == "") { $acx_si_fsmi_disable_mobile = "no"; }
 
361
  echo "\n\n\n<!-- Starting Styles For Social Media Icon From Acurax International www.acurax.com -->\n<style type='text/css'>\n";
362
  echo "#divBottomRight img \n{\n";
363
  echo "width: " . $acx_si_icon_size . "px; \n}\n";
373
  echo ".acx_fsmi_float_fix a \n{\n";
374
  echo "display:inline-block; \n}\n";
375
  }
376
+ if($acx_si_fsmi_disable_mobile == "yes")
377
+ {
378
+ echo "@media only screen and (max-width:650px) \n{\n#divBottomRight \n{\n";
379
+ echo "display:none !important; \n}\n}\n";
380
+ }
381
 
382
  echo "</style>\n<!-- Ending Styles For Social Media Icon From Acurax International www.acurax.com -->\n\n\n\n";
383
  } add_action('admin_head', 'extra_style_acx_icon'); // ADMIN
488
  </div>';
489
  }
490
  $acx_fsmi_si_current_version = get_option('acx_fsmi_si_current_version');
491
+ if($acx_fsmi_si_current_version != '1.3.5') // Current Version
492
  {
493
  if (get_option('social_icon_array_order') != "")
494
  {
669
  {
670
  $ad_1 = '
671
  </hr>
672
+ <a name="compare"></a><div id="ss_middle_wrapper">
673
+ <div id="ss_middle_center">
674
+ <div id="ss_middle_inline_block">
675
+
676
+ <div class="middle_h2_1">
677
+ <h2>Limited on Features ?</h2>
678
+ <h3>Compare and Decide</h3>
679
+ </div><!-- middle_h2_1 -->
680
+
681
+ <div id="ss_features_table">
682
+
683
+ <div id="ss_table_header">
684
+ <div class="tb_h1"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
685
+ <div class="tb_h2"> <h3>Features</h3> </div><!-- tb_h2 -->
686
+ <div class="tb_h3"> <div class="ss_download"> </div><!-- ss_download --> </div><!-- tb_h3 -->
687
+ <div class="tb_h4 fsmi_tb_h4"> <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_settings_table&utm_medium=link&utm_campaign=compare_buynow" target="_blank"><div class="ss_buy_now"> </div><!-- ss_buy_now --></a> </div><!-- tb_h4 -->
688
+ </div><!-- ss_table_header -->
689
+
690
+ <div class="ss_column_holder">
691
+
692
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
693
+ <div class="ss_feature_group" style="padding-top: 197px;"> Display </div><!-- -->
694
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
695
+ <div class="ss_features">
696
+ <ul>
697
+ <li>More Sharp Quality Icons</li>
698
+ <li>20+ Icon Theme/Style</li>
699
+ <li>Can Choose Icon Theme/Style</li>
700
+ <li>Can Choose Icon Size</li>
701
+ <li>Automatic/Manual Integration</li>
702
+ <li>Set MouseOver text for each icon in Share Mode</li>
703
+ <li>Set MouseOver text for each icon in Profile Link Mode</li>
704
+ <li>Option to HIDE Invididual Share Icon</li>
705
+ <li><strong>Set Floating Icons in Vertical</strong></li>
706
+ <li><strong>Define how many icons in 1 row</strong></li>
707
+ <li class="ss_last_one"><strong>Add Custom Icons</strong></li>
708
+ </ul>
709
+ </div><!-- ss_features -->
710
+
711
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
712
+ <div class="ss_y_n_holder">
713
+ <div class="ss_no"> </div><!-- ss_no -->
714
+ <div class="ss_yes"> </div><!-- ss_yes -->
715
+ <div class="ss_yes"> </div><!-- ss_yes -->
716
+ <div class="ss_yes"> </div><!-- ss_yes -->
717
+ <div class="ss_yes"> </div><!-- ss_yes -->
718
+ <div class="ss_no"> </div><!-- ss_no -->
719
+ <div class="ss_no"> </div><!-- ss_no -->
720
+ <div class="ss_no"> </div><!-- ss_no -->
721
+ <div class="ss_no"> </div><!-- ss_no -->
722
+ <div class="ss_no"> </div><!-- ss_no -->
723
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
724
+ </div><!-- ss_y_n_holder -->
725
+
726
+ <div class="ss_y_n_holder">
727
+ <div class="ss_yes"> </div><!-- ss_yes -->
728
+ <div class="ss_yes"> </div><!-- ss_yes -->
729
+ <div class="ss_yes"> </div><!-- ss_yes -->
730
+ <div class="ss_yes"> </div><!-- ss_yes -->
731
+ <div class="ss_yes"> </div><!-- ss_yes -->
732
+ <div class="ss_yes"> </div><!-- ss_yes -->
733
+ <div class="ss_yes"> </div><!-- ss_yes -->
734
+ <div class="ss_yes"> </div><!-- ss_yes -->
735
+ <div class="ss_yes"> </div><!-- ss_yes -->
736
+ <div class="ss_yes"> </div><!-- ss_yes -->
737
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
738
+ </div><!-- ss_y_n_holder -->
739
+
740
+ </div><!-- column_holder -->
741
+
742
+ <div class="ss_column_holder">
743
+
744
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
745
+ <div class="ss_feature_group" style="padding-top: 30px;"> Icon Function </div><!-- -->
746
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
747
+ <div class="ss_features">
748
+ <ul>
749
+ <li>Link to Social Media Profile</li>
750
+ <li class="ss_last_one"><strong>Share On Social Media</strong></li>
751
+ </ul>
752
+ </div><!-- ss_features -->
753
+
754
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
755
+ <div class="ss_y_n_holder">
756
+ <div class="ss_yes"> </div><!-- ss_yes -->
757
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
758
+ </div><!-- ss_y_n_holder -->
759
+
760
+ <div class="ss_y_n_holder">
761
+ <div class="ss_yes"> </div><!-- ss_yes -->
762
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
763
+ </div><!-- ss_y_n_holder -->
764
+
765
+ </div><!-- column_holder -->
766
+
767
+ <div class="ss_column_holder">
768
+
769
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
770
+ <div class="ss_feature_group" style="padding-top: 30px;"> Animation </div><!-- -->
771
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
772
+ <div class="ss_features">
773
+ <ul>
774
+ <li>Fly Animation</li>
775
+ <li class="ss_last_one"><strong>Mouse Over Effects</strong></li>
776
+ </ul>
777
+ </div><!-- ss_features -->
778
+
779
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
780
+ <div class="ss_y_n_holder">
781
+ <div class="ss_yes"> </div><!-- ss_yes -->
782
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
783
+ </div><!-- ss_y_n_holder -->
784
+
785
+ <div class="ss_y_n_holder">
786
+ <div class="ss_yes"> </div><!-- ss_yes -->
787
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
788
+ </div><!-- ss_y_n_holder -->
789
+
790
+ </div><!-- column_holder -->
791
+
792
+ <div class="ss_column_holder">
793
+
794
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
795
+ <div class="ss_feature_group" style="padding-top: 84px;"> Fly Animation Repeat Interval</div><!-- -->
796
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
797
+ <div class="ss_features">
798
+ <ul>
799
+ <li>Based On Time in Seconds</li>
800
+ <li><strong>Based On Time in Minutes</strong></li>
801
+ <li>Based On Time in Hours</li>
802
+ <li>Based on Page Views</li>
803
+ <li class="ss_last_one">Based On Page Views and Time</li>
804
+ </ul>
805
+ </div><!-- ss_features -->
806
+
807
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
808
+ <div class="ss_y_n_holder">
809
+ <div class="ss_no"> </div><!-- ss_no -->
810
+ <div class="ss_no"> </div><!-- ss_no -->
811
+ <div class="ss_no"> </div><!-- ss_no -->
812
+ <div class="ss_no"> </div><!-- ss_no -->
813
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
814
+ </div><!-- ss_y_n_holder -->
815
+
816
+ <div class="ss_y_n_holder">
817
+ <div class="ss_yes"> </div><!-- ss_yes -->
818
+ <div class="ss_yes"> </div><!-- ss_yes -->
819
+ <div class="ss_yes"> </div><!-- ss_yes -->
820
+ <div class="ss_yes"> </div><!-- ss_yes -->
821
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
822
+ </div><!-- ss_y_n_holder -->
823
+
824
+ </div><!-- column_holder -->
825
+
826
+ <div class="ss_column_holder">
827
+
828
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
829
+ <div class="ss_feature_group" style="padding-top: 30px;"> Multiple Fly Animation<br/></div><!-- -->
830
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
831
+ <div class="ss_features">
832
+ <ul>
833
+ <li>Can Choose Fly Start Position</li>
834
+ <li class="ss_last_one">Can Choose Fly End Position</li>
835
+ </ul>
836
+ </div><!-- ss_features -->
837
+
838
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
839
+ <div class="ss_y_n_holder">
840
+ <div class="ss_no"> </div><!-- ss_no -->
841
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
842
+ </div><!-- ss_y_n_holder -->
843
+
844
+ <div class="ss_y_n_holder">
845
+ <div class="ss_yes"> </div><!-- ss_yes -->
846
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
847
+ </div><!-- ss_y_n_holder -->
848
+
849
+ </div><!-- column_holder -->
850
+
851
+ <div class="ss_column_holder">
852
+
853
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
854
+ <div class="ss_feature_group" style="padding-top: 52px;">Easy to Configure</div><!-- -->
855
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
856
+ <div class="ss_features">
857
+ <ul>
858
+ <li>Ajax Based Settings Page</li>
859
+ <li>Drag & Drop Reorder Icons</li>
860
+ <li class="ss_last_one">Easy to Configure</li>
861
+ </ul>
862
+ </div><!-- ss_features -->
863
+
864
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
865
+ <div class="ss_y_n_holder">
866
+ <div class="ss_no"> </div><!-- ss_no -->
867
+ <div class="ss_yes"> </div><!-- ss_yes -->
868
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
869
+ </div><!-- ss_y_n_holder -->
870
+
871
+ <div class="ss_y_n_holder">
872
+ <div class="ss_yes"> </div><!-- ss_yes -->
873
+ <div class="ss_yes"> </div><!-- ss_yes -->
874
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
875
+ </div><!-- ss_y_n_holder -->
876
+
877
+ </div><!-- column_holder -->
878
+
879
+ <div class="ss_column_holder">
880
+
881
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
882
+ <div class="ss_feature_group" style="padding-top: 106px;">Widget Support </div><!-- -->
883
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
884
+ <div class="ss_features">
885
+ <ul>
886
+ <li>Multiple Widgets</li>
887
+ <li>Separate Icon Style/Theme For Each</li>
888
+ <li>Separate Icon Size For Each</li>
889
+ <li>Set whether the icons to Link Profiles/SHARE</li>
890
+ <li><strong>Separate Mouse Over Multiple Animation for Each</strong></li>
891
+ <li class="ss_last_one">Separate Default Opacity for Each</li>
892
+ </ul>
893
+ </div><!-- ss_features -->
894
+
895
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
896
+ <div class="ss_y_n_holder">
897
+ <div class="ss_yes"> </div><!-- ss_yes -->
898
+ <div class="ss_yes"> </div><!-- ss_yes -->
899
+ <div class="ss_yes"> </div><!-- ss_yes -->
900
+ <div class="ss_no"> </div><!-- ss_no -->
901
+ <div class="ss_no"> </div><!-- ss_no -->
902
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
903
+ </div><!-- ss_y_n_holder -->
904
+
905
+ <div class="ss_y_n_holder">
906
+ <div class="ss_yes"> </div><!-- ss_yes -->
907
+ <div class="ss_yes"> </div><!-- ss_yes -->
908
+ <div class="ss_yes"> </div><!-- ss_yes -->
909
+ <div class="ss_yes"> </div><!-- ss_yes -->
910
+ <div class="ss_yes"> </div><!-- ss_yes -->
911
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
912
+ </div><!-- ss_y_n_holder -->
913
+
914
+ </div><!-- column_holder -->
915
+
916
+ <div class="ss_column_holder">
917
+
918
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
919
+ <div class="ss_feature_group" style="padding-top: 106px;">Shortcode Support </div><!-- -->
920
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
921
+ <div class="ss_features">
922
+ <ul>
923
+ <li>Multiple Instances</li>
924
+ <li>Separate Icon Style/Theme For Each</li>
925
+ <li><strong>Separate Icon Size For Each</strong></li>
926
+ <li>Set whether the icons to Link Profiles/SHARE</li>
927
+ <li>Separate Mouse Over Multiple Animation for Each</li>
928
+ <li class="ss_last_one">Separate Default Opacity for Each</li>
929
+ </ul>
930
+ </div><!-- ss_features -->
931
+
932
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
933
+ <div class="ss_y_n_holder">
934
+ <div class="ss_yes"> </div><!-- ss_yes -->
935
+ <div class="ss_yes"> </div><!-- ss_yes -->
936
+ <div class="ss_yes"> </div><!-- ss_yes -->
937
+ <div class="ss_no"> </div><!-- ss_no -->
938
+ <div class="ss_no"> </div><!-- ss_no -->
939
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
940
+ </div><!-- ss_y_n_holder -->
941
+
942
+ <div class="ss_y_n_holder">
943
+ <div class="ss_yes"> </div><!-- ss_yes -->
944
+ <div class="ss_yes"> </div><!-- ss_yes -->
945
+ <div class="ss_yes"> </div><!-- ss_yes -->
946
+ <div class="ss_yes"> </div><!-- ss_yes -->
947
+ <div class="ss_yes"> </div><!-- ss_yes -->
948
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
949
+ </div><!-- ss_y_n_holder -->
950
+
951
+ </div><!-- column_holder -->
952
+
953
+ <div class="ss_column_holder">
954
+
955
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
956
+ <div class="ss_feature_group" style="padding-top: 126px;">PHP Code Support </div><!-- -->
957
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
958
+ <div class="ss_features">
959
+ <ul>
960
+ <li>Multiple Instances</li>
961
+ <li>Use Outside Loop</li>
962
+ <li>Separate Icon Style/Theme For Each</li>
963
+ <li>Separate Icon Size For Each</li>
964
+ <li><strong>Set whether the icons to Link Profiles/SHARE</strong></li>
965
+ <li>Separate Mouse Over Multiple Animation for Each</li>
966
+ <li class="ss_last_one">Separate Default Opacity for Each</li>
967
+ </ul>
968
+ </div><!-- ss_features -->
969
+
970
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
971
+ <div class="ss_y_n_holder">
972
+ <div class="ss_yes"> </div><!-- ss_yes -->
973
+ <div class="ss_yes"> </div><!-- ss_yes -->
974
+ <div class="ss_yes"> </div><!-- ss_yes -->
975
+ <div class="ss_yes"> </div><!-- ss_yes -->
976
+ <div class="ss_no"> </div><!-- ss_no -->
977
+ <div class="ss_no"> </div><!-- ss_no -->
978
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
979
+ </div><!-- ss_y_n_holder -->
980
+
981
+ <div class="ss_y_n_holder">
982
+ <div class="ss_yes"> </div><!-- ss_yes -->
983
+ <div class="ss_yes"> </div><!-- ss_yes -->
984
+ <div class="ss_yes"> </div><!-- ss_yes -->
985
+ <div class="ss_yes"> </div><!-- ss_yes -->
986
+ <div class="ss_yes"> </div><!-- ss_yes -->
987
+ <div class="ss_yes"> </div><!-- ss_yes -->
988
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
989
+ </div><!-- ss_y_n_holder -->
990
+
991
+ </div><!-- column_holder -->
992
+
993
+
994
+
995
+ </div><!-- ss_features_table -->
996
+
997
+ <div id="ad_fsmi_2_button_order" style="float: left; width: 100%;">
998
+ <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_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 --></div></div></div>';
999
  $ad_2='<div id="ad_fsmi_2"> <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_settings&utm_medium=banner&utm_campaign=plugin_enjoy" target="_blank"><div id="ad_fsmi_2_button"></div></a> </div> <!-- ad_fsmi_2 --><br>
1000
  <div id="ad_fsmi_2_button_order">
1001
  <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_fsmi_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 --> ';
1014
  }
1015
  die(); // this is required to return a proper result
1016
  } add_action('wp_ajax_acx_fsmi_saveorder', 'acx_fsmi_saveorder_callback');
1017
+ function acx_quick_request_submit_callback()
1018
+ {
1019
+ $acx_name = $_POST['acx_name'];
1020
+ $acx_email = $_POST['acx_email'];
1021
+ $acx_phone = $_POST['acx_phone'];
1022
+ $acx_weburl = $_POST['acx_weburl'];
1023
+ $acx_subject = $_POST['acx_subject'];
1024
+ $acx_question = $_POST['acx_question'];
1025
+ if($acx_name == "" || $acx_email == "" || $acx_weburl == "" || $acx_subject == "" || $acx_question == "")
1026
+ {
1027
+ echo 2;
1028
+ } else
1029
+ {
1030
+ $current_user_acx = wp_get_current_user();
1031
+ $current_user_acx = $current_user->user_email;
1032
+ if($current_user_acx == "")
1033
+ {
1034
+ $current_user_acx = $acx_email;
1035
+ }
1036
+ $headers[] = 'From: ' . $acx_name . ' <' . $current_user_acx . '>';
1037
+ $headers[] = 'Content-Type: text/html; charset=UTF-8';
1038
+ $message = "Name: ".$acx_name . "\r\n <br>";
1039
+ $message = $message . "Email: ".$acx_email . "\r\n <br>";
1040
+ if($acx_phone != "")
1041
+ {
1042
+ $message = $message . "Phone: ".$acx_phone . "\r\n <br>";
1043
+ }
1044
+ // In case any of our lines are larger than 70 characters, we should use wordwrap()
1045
+ $acx_question = wordwrap($acx_question, 70, "\r\n <br>");
1046
+ $message = $message . "Website: ".$acx_weburl . "\r\n <br>";
1047
+ $message = $message . "Question: ".$acx_question . "\r\n <br>";
1048
+ $emailed = wp_mail( 'info@acurax.com', $acx_subject, $message, $headers );
1049
+ if($emailed)
1050
+ {
1051
+ echo 1;
1052
+ } else
1053
+ {
1054
+ echo 0;
1055
+ }
1056
+ }
1057
+ die(); // this is required to return a proper result
1058
+ }add_action('wp_ajax_acx_quick_request_submit','acx_quick_request_submit_callback');
1059
  ?>
images/admin.ico DELETED
Binary file
images/admin.png CHANGED
Binary file
images/check_mark.png DELETED
Binary file
images/cross_mark.png DELETED
Binary file
images/des.png ADDED
Binary file
images/fix.png ADDED
Binary file
images/fonts/agencyb-webfont.eot ADDED
Binary file
images/fonts/agencyb-webfont.svg ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata></metadata>
5
+ <defs>
6
+ <font id="agency_fbbold" horiz-adv-x="838" >
7
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
8
+ <missing-glyph horiz-adv-x="422" />
9
+ <glyph horiz-adv-x="2048" />
10
+ <glyph horiz-adv-x="2048" />
11
+ <glyph unicode="&#xd;" horiz-adv-x="2048" />
12
+ <glyph unicode=" " horiz-adv-x="422" />
13
+ <glyph unicode="&#x09;" horiz-adv-x="422" />
14
+ <glyph unicode="&#xa0;" horiz-adv-x="422" />
15
+ <glyph unicode="!" horiz-adv-x="438" d="M94 1565h250l-33 -1200h-184zM102 0v240h232v-240h-232z" />
16
+ <glyph unicode="&#x22;" horiz-adv-x="707" d="M74 1565h229l-45 -490h-139zM403 1565h228l-43 -490h-142z" />
17
+ <glyph unicode="#" horiz-adv-x="1110" d="M47 391v191h186l64 397h-178v190h209l63 396h207l-63 -396h165l64 396h209l-66 -396h158v-190h-188l-64 -397h180v-191h-211l-63 -391h-207l63 391h-165l-62 -391h-209l64 391h-156zM440 582h166l64 397h-166z" />
18
+ <glyph unicode="$" horiz-adv-x="936" d="M90 158v358h234v-313h282v305l-465 440q-51 49 -51 127v332q0 88 52 121q39 24 123 24q15 0 44.5 -1t44.5 -1v140h219v-140q15 0 45.5 1t45.5 1q84 0 123 -24q53 -32 53 -119v-338h-234v287h-282v-275l462 -436q54 -50 54 -127v-362q0 -88 -54 -121q-39 -24 -124 -24 q-14 0 -44 1h-45v-139h-219v139h-45q-29 -1 -44 -1q-84 0 -123 24q-52 32 -52 121z" />
19
+ <glyph unicode="%" horiz-adv-x="1343" d="M43 890v554q0 121 121 121h270q121 0 121 -121v-554q0 -121 -121 -121h-270q-121 0 -121 121zM182 0v28l841 1537h134v-29l-840 -1536h-135zM209 915h178v504h-178v-504zM782 121v554q0 121 121 121h270q121 0 121 -121v-554q0 -121 -121 -121h-270q-121 0 -121 121z M948 146h178v504h-178v-504z" />
20
+ <glyph unicode="&#x26;" horiz-adv-x="999" d="M90 141v477q0 76 50 120q59 40 118 79q-57 38 -114 77q-50 43 -50 116v413q0 142 142 142h475q141 0 141 -142v-325h-229v270h-297v-379l106 -74h522v-200h-110v-715h-613q-141 0 -141 141zM319 197h297v518h-190l-107 -76v-442z" />
21
+ <glyph unicode="'" horiz-adv-x="377" d="M74 1565h229l-45 -490h-139z" />
22
+ <glyph unicode="(" horiz-adv-x="623" d="M84 682q0 477 256 883h231v-11q-237 -412 -237 -872t237 -872v-11h-231q-256 406 -256 883z" />
23
+ <glyph unicode=")" horiz-adv-x="623" d="M53 -190q238 412 238 872t-238 872v11h232q256 -406 256 -883t-256 -883h-232v11z" />
24
+ <glyph unicode="*" horiz-adv-x="938" d="M78 1085l241 105l-241 106l106 174l205 -147l-22 258h202l-18 -258l203 147l108 -174l-241 -106l241 -105l-108 -174l-203 150l18 -260h-202l22 260l-205 -150z" />
25
+ <glyph unicode="+" horiz-adv-x="971" d="M74 588v194h305v299h213v-299h305v-194h-305v-299h-213v299h-305z" />
26
+ <glyph unicode="," horiz-adv-x="377" d="M55 -162l29 402h240l-117 -402h-152z" />
27
+ <glyph unicode="-" horiz-adv-x="631" d="M76 498v209h477v-209h-477z" />
28
+ <glyph unicode="." horiz-adv-x="377" d="M76 0v242h225v-242h-225z" />
29
+ <glyph unicode="/" horiz-adv-x="909" d="M39 0v14l618 1551h213v-15l-618 -1550h-213z" />
30
+ <glyph unicode="0" horiz-adv-x="956" d="M94 143v1278q0 144 142 144h485q141 0 141 -144v-1278q0 -143 -141 -143h-488q-139 0 -139 143zM324 201h309v1163h-309v-1163z" />
31
+ <glyph unicode="1" horiz-adv-x="481" d="M57 1104v31l121 430h199v-1565h-230v1104h-90z" />
32
+ <glyph unicode="2" horiz-adv-x="903" d="M68 0v145l530 932v289h-285v-291h-229v348q0 142 143 142h459q143 0 143 -142v-303q0 -74 -51 -164l-430 -751h479v-205h-759z" />
33
+ <glyph unicode="3" horiz-adv-x="942" d="M94 143v361h230v-303h301v393l-287 197v49l287 194v330h-301v-285h-230v342q0 144 142 144h477q141 0 141 -144v-368q0 -93 -78 -144l-145 -94l147 -92q76 -47 76 -141v-439q0 -143 -141 -143h-480q-139 0 -139 143z" />
34
+ <glyph unicode="4" horiz-adv-x="932" d="M35 295v139l389 1131h238v-9l-365 -1062h252v471h223v-471h119v-199h-119v-295h-223v295h-514z" />
35
+ <glyph unicode="5" horiz-adv-x="930" d="M92 143v361h230v-303h290v602h-520l25 762h714v-205h-497l-15 -356h381q142 0 142 -142v-719q0 -143 -142 -143h-469q-139 0 -139 143z" />
36
+ <glyph unicode="6" horiz-adv-x="944" d="M94 143v1278q0 144 139 144h474q141 0 141 -144v-331h-230v274h-294v-471h387q141 0 141 -141v-609q0 -143 -141 -143h-475q-142 0 -142 143zM324 201h299v493h-299v-493z" />
37
+ <glyph unicode="7" horiz-adv-x="883" d="M59 1135v430h775v-150l-361 -1415h-240l351 1364h-299v-229h-226z" />
38
+ <glyph unicode="8" horiz-adv-x="961" d="M92 143v455q0 87 58 133q69 40 139 80l-134 78q-61 48 -61 129v403q0 144 142 144h487q139 0 139 -144v-403q0 -82 -60 -129l-134 -78q69 -40 139 -80q59 -46 59 -133v-455q0 -143 -141 -143h-494q-139 0 -139 143zM324 197h309v434l-154 88l-155 -88v-434zM328 993 l151 -90l152 90v375h-303v-375z" />
39
+ <glyph unicode="9" horiz-adv-x="944" d="M90 813v608q0 144 139 144h478q143 0 143 -144v-1278q0 -143 -141 -143h-471q-142 0 -142 143v332h230v-274h292v471h-389q-139 0 -139 141zM319 870h299v494h-299v-494z" />
40
+ <glyph unicode=":" horiz-adv-x="377" d="M76 0v242h225v-242h-225zM76 635v244h225v-244h-225z" />
41
+ <glyph unicode=";" horiz-adv-x="377" d="M47 -162l29 402h239l-116 -402h-152zM76 635v244h225v-244h-225z" />
42
+ <glyph unicode="&#x3c;" horiz-adv-x="745" d="M66 616v119l593 414v-242l-344 -231l344 -232v-241h-12z" />
43
+ <glyph unicode="=" horiz-adv-x="956" d="M80 373v190h797v-190h-797zM80 768v193h797v-193h-797z" />
44
+ <glyph unicode="&#x3e;" horiz-adv-x="745" d="M86 203v241l346 232l-346 231v242h14l582 -414v-119l-582 -413h-14z" />
45
+ <glyph unicode="?" horiz-adv-x="868" d="M74 1085v336q0 144 143 144h436q144 0 144 -144v-323q0 -76 -41 -131l-228 -308v-294h-227v266q0 79 41 135l225 305v299h-264v-285h-229zM297 0v240h235v-240h-235z" />
46
+ <glyph unicode="@" horiz-adv-x="1194" d="M92 90v1385q0 90 90 90h830q90 0 90 -90v-1043q0 -90 -90 -90h-557q-90 0 -90 88v350q0 90 90 90h204v224h-129v-140h-155v187q0 90 88 90h268q90 0 90 -90v-692h174v1013h-796v-1360h903v-102h-920q-90 0 -90 90zM526 473h133v268h-133v-268z" />
47
+ <glyph unicode="A" horiz-adv-x="924" d="M37 0v4l303 1563h246l301 -1567h-232l-47 297h-293l-47 -297h-231zM346 498h229l-114 706z" />
48
+ <glyph unicode="B" horiz-adv-x="952" d="M94 0v1565h621q139 0 139 -144v-403q0 -80 -50 -124q-7 -6 -122 -77q119 -73 126 -80q54 -47 54 -129v-465q0 -143 -143 -143h-625zM328 197h299v446l-115 76h-184v-522zM328 909h180l113 80v379h-293v-459z" />
49
+ <glyph unicode="C" horiz-adv-x="954" d="M94 143v1278q0 144 139 144h488q143 0 143 -144v-366h-233v309h-303v-1163h303v329h233v-387q0 -143 -143 -143h-488q-139 0 -139 143z" />
50
+ <glyph unicode="D" horiz-adv-x="961" d="M94 0v1565h477q139 0 221 -79.5t82 -217.5v-973q0 -138 -82 -216.5t-221 -78.5h-477zM328 201h168q143 0 143 133v899q0 131 -137 131h-174v-1163z" />
51
+ <glyph unicode="E" horiz-adv-x="809" d="M94 0v1565h643v-207h-409v-457h352v-203h-352v-491h415v-207h-649z" />
52
+ <glyph unicode="F" horiz-adv-x="772" d="M94 0v1565h639v-207h-405v-463h346v-203h-346v-692h-234z" />
53
+ <glyph unicode="G" horiz-adv-x="961" d="M94 143v1278q0 144 142 144h489q143 0 143 -144v-334h-235v277h-305v-1163h305v438h-174v199h409v-695q0 -143 -143 -143h-492q-139 0 -139 143z" />
54
+ <glyph unicode="H" horiz-adv-x="973" d="M94 0v1565h234v-645h317v645h236v-1565h-236v702h-317v-702h-234z" />
55
+ <glyph unicode="I" horiz-adv-x="430" d="M98 0v1565h234v-1565h-234z" />
56
+ <glyph unicode="J" horiz-adv-x="889" d="M68 143v385h233v-327h262v1364h234v-1422q0 -143 -144 -143h-444q-141 0 -141 143z" />
57
+ <glyph unicode="K" horiz-adv-x="883" d="M94 0v1565h234v-662l260 662h256v-11l-318 -743l357 -811h-258l-297 698v-698h-234z" />
58
+ <glyph unicode="L" horiz-adv-x="754" d="M94 0v1565h234v-1356h381v-209h-615z" />
59
+ <glyph unicode="M" horiz-adv-x="1133" d="M94 0v1565h221l246 -865q4 -14 6 -71q0 25 6 71l246 865h221v-1565h-225v772q0 61 14 170l-202 -799h-119l-203 799q14 -111 14 -170v-772h-225z" />
60
+ <glyph unicode="N" horiz-adv-x="981" d="M94 0v1565h205l375 -965q-15 72 -15 113v852h228v-1565h-205l-375 985q15 -72 15 -113v-872h-228z" />
61
+ <glyph unicode="O" horiz-adv-x="977" d="M94 143v1278q0 144 139 144h508q142 0 142 -144v-1278q0 -143 -142 -143h-508q-139 0 -139 143zM328 201h321v1163h-321v-1163z" />
62
+ <glyph unicode="P" horiz-adv-x="922" d="M94 0v1565h613q143 0 143 -144v-708q0 -146 -143 -146h-379v-567h-234zM328 768h286v596h-286v-596z" />
63
+ <glyph unicode="Q" horiz-adv-x="1008" d="M94 143v1278q0 144 142 144h505q142 0 142 -144v-1132l106 -76v-215h-16l-105 80q-28 -78 -127 -78h-508q-139 0 -139 143zM328 201h321v55l-137 104v213h14l123 -92v883h-321v-1163z" />
64
+ <glyph unicode="R" horiz-adv-x="944" d="M94 0v1565h621q141 0 141 -144v-569q0 -99 -67 -128q-36 -15 -152 -15l258 -709h-244l-258 727v141h230v496h-295v-1364h-234z" />
65
+ <glyph unicode="S" horiz-adv-x="936" d="M90 143v373h234v-319h286v307l-469 444q-51 49 -51 125v348q0 144 141 144h471q142 0 142 -142v-350h-234v295h-286v-283l469 -442q51 -48 51 -127v-373q0 -143 -142 -143h-471q-141 0 -141 143z" />
66
+ <glyph unicode="T" horiz-adv-x="799" d="M25 1358v207h749v-207h-258v-1358h-233v1358h-258z" />
67
+ <glyph unicode="U" horiz-adv-x="971" d="M94 143v1422h234v-1364h315v1364h234v-1422q0 -143 -144 -143h-497q-142 0 -142 143z" />
68
+ <glyph unicode="V" horiz-adv-x="911" d="M41 1565h235l175 -1073q2 -46 6 -134v12q0 45 6 122l176 1073h234l-300 -1567h-233z" />
69
+ <glyph unicode="W" horiz-adv-x="1286" d="M37 1565h237l121 -928q3 -48 8 -143q1 48 9 143l135 928h192l135 -928q3 -48 9 -143q1 48 8 143l121 928h237l-229 -1567h-229l-140 887q-2 48 -8 143q0 -48 -8 -143l-139 -887h-230z" />
70
+ <glyph unicode="X" horiz-adv-x="901" d="M27 0v8l292 793q-275 760 -274 764h250l156 -510l157 510h248v-9l-274 -749l292 -807h-253l-172 551l-173 -551h-249z" />
71
+ <glyph unicode="Y" horiz-adv-x="907" d="M27 1556q-1 0 -1 2.5t1 6.5h241l187 -680l186 680h240v-9l-207 -654q-38 -97 -103 -327v-575h-235v575q-16 78 -46 165q-53 149 -57 162z" />
72
+ <glyph unicode="Z" horiz-adv-x="799" d="M39 0v125l438 1229h-403v211h682v-135l-437 -1219h439v-211h-719z" />
73
+ <glyph unicode="[" horiz-adv-x="602" d="M94 -111v1541q0 135 137 135h299v-209h-206v-1395h206v-209h-299q-137 0 -137 137z" />
74
+ <glyph unicode="\" horiz-adv-x="909" d="M39 1565h213l618 -1565h-213z" />
75
+ <glyph unicode="]" horiz-adv-x="602" d="M72 -39h209v1395h-209v209h301q137 0 137 -135v-1541q0 -137 -137 -137h-301v209z" />
76
+ <glyph unicode="^" horiz-adv-x="854" d="M78 1012v12l250 541h202l246 -553h-184l-166 311l-166 -311h-182z" />
77
+ <glyph unicode="_" horiz-adv-x="809" d="M0 -236h811v-174h-811v174z" />
78
+ <glyph unicode="`" horiz-adv-x="836" d="M231 1341v9h285l174 -265v-8h-168z" />
79
+ <glyph unicode="a" horiz-adv-x="815" d="M78 119v364q0 125 129 125h309v232h-219v-144h-207v189q0 125 129 125h387q127 0 127 -125v-885h-219v35l-156 -24q-102 -15 -155 -15q-125 0 -125 123zM297 174l219 8v271h-219v-279z" />
80
+ <glyph unicode="b" d="M82 0v1565h229v-592q80 12 160 25q101 16 160 16q125 0 125 -123v-688q0 -95 -57 -149t-152 -54h-465zM311 190h142q73 0 73 76v553l-215 -4v-625z" />
81
+ <glyph unicode="c" horiz-adv-x="817" d="M82 125v760q0 125 129 125h397q127 0 127 -125v-240h-223v174h-205v-629h205v193h223v-258q0 -125 -127 -125h-397q-129 0 -129 125z" />
82
+ <glyph unicode="d" horiz-adv-x="836" d="M80 182v625q0 123 88 171q64 36 194 36q29 0 84 -2t78 -2v555h228v-1565h-228v35q-232 -41 -260 -41q-86 0 -135 50.5t-49 137.5zM307 260q0 -74 72 -74q17 0 145 11v622h-141q-76 0 -76 -76v-483z" />
83
+ <glyph unicode="e" horiz-adv-x="819" d="M82 125v760q0 125 129 125h395q129 0 129 -125v-371l-63 -63h-371v-283h215v168h219v-211q0 -125 -129 -125h-395q-129 0 -129 125zM301 600h215v242h-215v-242z" />
84
+ <glyph unicode="f" horiz-adv-x="528" d="M27 815v195h104v430q0 125 127 125h268v-199h-168v-356h146v-195h-146v-815h-227v815h-104z" />
85
+ <glyph unicode="g" horiz-adv-x="836" d="M80 209v618q0 87 49 137t135 50q43 0 260 -41v37h228v-1254q0 -125 -129 -125h-398q-129 0 -129 125v162h221v-121h207v209h-235q-96 0 -152.5 54t-56.5 149zM307 266q0 -76 76 -76h141v621q-115 12 -143 12q-74 0 -74 -73v-484z" />
86
+ <glyph unicode="h" d="M82 0v1565h229v-592q80 12 160 25q101 16 160 16q125 0 125 -123v-891h-230v819l-215 -4v-815h-229z" />
87
+ <glyph unicode="i" horiz-adv-x="401" d="M86 1155v236h229v-236h-229zM88 0v1010h225v-1010h-225z" />
88
+ <glyph unicode="j" horiz-adv-x="401" d="M-57 -178h145v1188h225v-1254q0 -125 -127 -125h-243v191zM86 1155v236h229v-236h-229z" />
89
+ <glyph unicode="k" horiz-adv-x="772" d="M82 0v1565h229v-940l181 385h239v-4l-233 -459l258 -547h-244l-201 463v-463h-229z" />
90
+ <glyph unicode="l" horiz-adv-x="401" d="M88 0v1565h225v-1565h-225z" />
91
+ <glyph unicode="m" horiz-adv-x="1278" d="M82 0v1010h229v-37q80 13 159 26q97 15 161 15q79 0 102 -45q84 13 168 27q111 18 170 18q125 0 125 -123v-891h-227v819l-215 -4v-815h-228v819l-215 -4v-815h-229z" />
92
+ <glyph unicode="n" d="M82 0v1010h229v-37q80 13 159 25q98 16 161 16q125 0 125 -123v-891h-230v819l-215 -4v-815h-229z" />
93
+ <glyph unicode="o" horiz-adv-x="831" d="M82 125v760q0 125 129 125h410q127 0 127 -125v-760q0 -125 -127 -125h-410q-129 0 -129 125zM307 190h217v629h-217v-629z" />
94
+ <glyph unicode="p" horiz-adv-x="836" d="M82 -369v1379h229v-37q80 12 160 25q101 16 160 16q125 0 125 -123v-688q0 -123 -88 -172q-64 -35 -194 -35q-30 0 -84.5 2t-78.5 2v-369h-229zM311 190h142q73 0 73 76v553l-215 -4v-625z" />
95
+ <glyph unicode="q" horiz-adv-x="836" d="M80 203v624q0 87 49 137t135 50q43 0 260 -41v37h228v-1379h-228v369h-235q-96 0 -152.5 54t-56.5 149zM307 266q0 -76 74 -76h143v621q-125 12 -145 12q-72 0 -72 -73v-484z" />
96
+ <glyph unicode="r" horiz-adv-x="766" d="M82 0v1010h229v-37q71 13 141 26q85 15 142 15q125 0 125 -123v-303h-227v231l-181 -4v-815h-229z" />
97
+ <glyph unicode="s" horiz-adv-x="795" d="M78 125v217h219v-170h201v160l-351 207q-69 41 -69 110v236q0 125 129 125h381q127 0 127 -125v-203h-217v156h-201v-146l350 -205q70 -40 70 -112v-250q0 -125 -127 -125h-385q-127 0 -127 125z" />
98
+ <glyph unicode="t" horiz-adv-x="563" d="M29 815v195h108v274h228v-274h147v-195h-147v-620h153v-195h-254q-127 0 -127 125v690h-108z" />
99
+ <glyph unicode="u" d="M82 119v891h227v-820l217 5v815h228v-1010h-228v35q-79 -13 -159 -26q-97 -15 -160 -15q-125 0 -125 125z" />
100
+ <glyph unicode="v" horiz-adv-x="797" d="M31 1010h235l133 -664l133 664h234l-258 -1012h-219z" />
101
+ <glyph unicode="w" horiz-adv-x="1112" d="M31 1010h219l110 -645l109 645h174l109 -645l110 645h219l-217 -1012h-200l-109 559l-109 -559h-198z" />
102
+ <glyph unicode="x" horiz-adv-x="778" d="M20 0v4l244 516l-221 490h236l110 -293l115 293h231v-4l-221 -484l244 -522h-248l-121 317l-125 -317h-244z" />
103
+ <glyph unicode="y" horiz-adv-x="797" d="M31 1010h235l133 -664l133 664h234l-253 -997l-97 -382h-234l105 377z" />
104
+ <glyph unicode="z" horiz-adv-x="711" d="M45 0v135l336 688h-309v187h581v-136l-338 -688h338v-186h-608z" />
105
+ <glyph unicode="{" horiz-adv-x="760" d="M53 672v37l197 192v416q0 248 239 248h199v-207q-12 0 -43 2t-48 2q-116 0 -116 -84v-354q0 -57 -11 -83t-52 -61l-109 -90l109 -92q41 -35 53 -63q10 -24 10 -78v-414q0 -87 119 -87q16 0 46 1.5t42 1.5v-207h-199q-239 0 -239 248v479z" />
106
+ <glyph unicode="|" horiz-adv-x="430" d="M102 -360v1925h226v-1925h-226z" />
107
+ <glyph unicode="}" horiz-adv-x="760" d="M72 -41q11 0 41 -1.5t46 -1.5q122 0 122 87v414q0 56 10 81.5t51 59.5l109 92l-109 90q-41 34 -52 63q-9 23 -9 81v354q0 83 -119 83q-17 0 -48 -1.5t-42 -1.5v207h198q240 0 240 -248v-416l197 -192v-37l-197 -193v-479q0 -248 -240 -248h-198v207z" />
108
+ <glyph unicode="~" horiz-adv-x="1036" d="M129 428v250q0 121 117 121q52 0 129 -31l332 -133v158h200v-248q0 -123 -116 -123q-55 0 -132 31l-331 133v-158h-199z" />
109
+ <glyph unicode="&#xa1;" horiz-adv-x="438" d="M94 0l33 1200h184l33 -1200h-250zM102 1325v240h232v-240h-232z" />
110
+ <glyph unicode="&#xa2;" horiz-adv-x="817" d="M82 412v747q0 96 74 118q25 7 155 7v281h197v-281q129 0 154 -7q73 -22 73 -118v-239h-223v176h-205v-621h205v195h223v-258q0 -96 -73 -118q-25 -7 -154 -7v-287h-197v287q-130 0 -155 7q-74 22 -74 118z" />
111
+ <glyph unicode="&#xa3;" horiz-adv-x="942" d="M49 0v201h105v454h-105v197h105v569q0 144 143 144h428q141 0 141 -142v-340h-229v283h-254v-514h279v-197h-279v-454h494v-201h-828z" />
112
+ <glyph unicode="&#xa4;" horiz-adv-x="1221" d="M142 349l177 178v395l-177 177l118 118l194 -194h330l193 194l118 -118l-177 -178v-395l177 -177l-118 -118l-194 194h-330l-193 -194zM483 573l271 1v302h-271v-303z" />
113
+ <glyph unicode="&#xa5;" horiz-adv-x="907" d="M27 1565h241l187 -680l186 680h240v-9l-181 -571h158v-186h-217l-45 -148h262v-188h-287v-463h-235v463h-285v188h260l-45 148h-215v186h156q-182 576 -180 580z" />
114
+ <glyph unicode="&#xa6;" horiz-adv-x="397" d="M129 -409v826h139v-826h-139zM129 811v827h139v-827h-139z" />
115
+ <glyph unicode="&#xa7;" horiz-adv-x="913" d="M88 125v237h227v-190h285v195l-434 180q-78 32 -78 112v177q0 77 50 113q3 2 124 59q-120 57 -122 59q-52 37 -52 113v260q0 125 127 125h483q127 0 127 -125v-238h-225v191h-285v-195l433 -180q77 -33 77 -113v-176q0 -78 -50 -114q-1 -1 -124 -58q122 -58 123 -59 q51 -36 51 -113v-260q0 -125 -127 -125h-483q-127 0 -127 125zM311 694l146 -67l147 67v176l-147 68l-146 -68v-176z" />
116
+ <glyph unicode="&#xa8;" horiz-adv-x="836" d="M156 1077v215h219v-215h-219zM461 1077v215h219v-215h-219z" />
117
+ <glyph unicode="&#xa9;" horiz-adv-x="1194" d="M92 90v1385q0 90 90 90h830q90 0 90 -90v-1385q0 -90 -90 -90h-830q-90 0 -90 90zM199 102h796v1360h-796v-1360zM365 438v692q0 97 94 97h272q94 0 94 -97v-219h-161v168h-138v-590h138v179h161v-230q0 -94 -94 -94h-272q-94 0 -94 94z" />
118
+ <glyph unicode="&#xaa;" horiz-adv-x="707" d="M86 512v154h535v-154h-535zM86 858v291q0 98 104 98h246v178h-170v-108h-172v149q0 99 105 99h315q107 0 107 -99v-700h-187v27q-233 -31 -248 -31q-100 0 -100 96zM266 905l170 6v213h-170v-219z" />
119
+ <glyph unicode="&#xab;" horiz-adv-x="1036" d="M66 537v36l253 381h250v-8l-258 -391l258 -399h-250zM453 537v36l254 381h249v-8l-260 -391l260 -399h-249z" />
120
+ <glyph unicode="&#xac;" horiz-adv-x="942" d="M119 624v124h704v-416h-124v292h-580z" />
121
+ <glyph unicode="&#xad;" horiz-adv-x="631" d="M76 498v209h477v-209h-477z" />
122
+ <glyph unicode="&#xae;" horiz-adv-x="1194" d="M92 90v1385q0 90 90 90h830q90 0 90 -90v-1385q0 -90 -90 -90h-830q-90 0 -90 90zM199 102h796v1360h-796v-1360zM362 344v881h377q92 0 92 -95v-319q0 -91 -112 -94l139 -373h-164l-141 381l12 115h107v250h-148v-746h-162z" />
123
+ <glyph unicode="&#xaf;" horiz-adv-x="836" d="M156 1096v157h524v-157h-524z" />
124
+ <glyph unicode="&#xb0;" horiz-adv-x="657" d="M76 1022v422q0 121 121 121h264q121 0 121 -121v-422q0 -123 -121 -123h-264q-121 0 -121 123zM229 1042h197v379h-197v-379z" />
125
+ <glyph unicode="&#xb1;" d="M68 190v123h704v-123h-704zM70 650v114h290v264h119v-264h289v-114h-289v-254h-119v254h-290z" />
126
+ <glyph unicode="&#xb2;" horiz-adv-x="627" d="M60 769v88l341 423v140h-170v-161h-160v175q0 53 35 92t88 39h238q56 0 92.5 -37t36.5 -94v-98q0 -93 -37 -137l-237 -283h275v-147h-502z" />
127
+ <glyph unicode="&#xb3;" horiz-adv-x="636" d="M65 890v150h159v-132h188v120l-174 113v67l159 104v114h-168v-122h-159v132q0 129 127 129h246q114 0 114 -111v-127q0 -54 -46 -92q-46 -31 -92 -61q96 -61 107 -70q45 -42 45 -111v-105q0 -48 -29.5 -83.5t-76.5 -35.5h-281q-119 0 -119 121z" />
128
+ <glyph unicode="&#xb4;" horiz-adv-x="836" d="M145 1077v8l172 265h287v-9l-291 -264h-168z" />
129
+ <glyph unicode="&#xb6;" horiz-adv-x="1040" d="M78 702v721q0 142 141 142h727v-1565h-213v561h-119v-561h-213v561h-182q-141 0 -141 141zM481 768h252v590h-252v-590z" />
130
+ <glyph unicode="&#xb7;" horiz-adv-x="399" d="M76 483v258h250v-258h-250z" />
131
+ <glyph unicode="&#xb8;" horiz-adv-x="836" d="M195 -182h155v-84h131v84q-50 22 -101 44q-44 28 -44 89v69h151v-61q52 -25 104 -51q46 -31 46 -92v-107q0 -96 -96 -96h-250q-96 0 -96 96v109z" />
132
+ <glyph unicode="&#xb9;" horiz-adv-x="397" d="M72 1193l90 372h135v-796h-173v424h-52z" />
133
+ <glyph unicode="&#xba;" horiz-adv-x="715" d="M86 512v154h543v-154h-543zM86 866v600q0 99 107 99h331q105 0 105 -99v-600q0 -100 -105 -100h-331q-107 0 -107 100zM270 915h172v500h-172v-500z" />
134
+ <glyph unicode="&#xbb;" horiz-adv-x="1036" d="M80 156v8l260 391l-260 399h250l254 -381v-36l-254 -381h-250zM467 156v8l260 391l-260 399h252l252 -381v-36l-252 -381h-252z" />
135
+ <glyph unicode="&#xbc;" horiz-adv-x="1170" d="M29 0v28l841 1537h134v-29l-840 -1536h-135zM75 1193l90 372h135v-796h-173v424h-52zM583 169v119l193 508h163l-183 -484h150v192h158v-192h71v-143h-71v-169h-158v169h-323z" />
136
+ <glyph unicode="&#xbd;" horiz-adv-x="1180" d="M41 0v28l841 1537h134v-29l-840 -1536h-135zM78 1193l90 372h135v-796h-173v424h-52zM657 0v88l341 423v140h-170v-161h-160v175q0 53 35 92t88 39h238q56 0 92.5 -37t36.5 -94v-98q0 -93 -37 -137l-237 -283h275v-147h-502z" />
137
+ <glyph unicode="&#xbe;" horiz-adv-x="1300" d="M22 890v150h159v-132h188v120l-174 113v67l159 104v114h-168v-122h-159v132q0 129 127 129h246q114 0 114 -111v-127q0 -54 -46 -92q-46 -31 -92 -61q96 -61 107 -70q45 -42 45 -111v-105q0 -48 -29.5 -83.5t-76.5 -35.5h-281q-119 0 -119 121zM201 -13v28l841 1537h134 v-29l-840 -1536h-135zM732 169v119l193 508h163l-183 -484h150v192h158v-192h71v-143h-71v-169h-158v169h-323z" />
138
+ <glyph unicode="&#xbf;" horiz-adv-x="868" d="M74 143v324q0 76 41 131l227 307v295h227v-266q0 -83 -39 -135l-227 -305v-299h266v284h228v-336q0 -143 -144 -143h-436q-143 0 -143 143zM338 1325v240h235v-240h-235z" />
139
+ <glyph unicode="&#xc0;" horiz-adv-x="924" d="M37 0v4l303 1563h246l301 -1567h-232l-47 297h-293l-47 -297h-231zM142 1899v9h285l174 -265v-8h-168zM346 498h229l-114 706z" />
140
+ <glyph unicode="&#xc1;" horiz-adv-x="924" d="M37 0v4l303 1563h246l301 -1567h-232l-47 297h-293l-47 -297h-231zM316 1633v8l172 265h287v-9l-291 -264h-168zM346 498h229l-114 706z" />
141
+ <glyph unicode="&#xc2;" horiz-adv-x="924" d="M37 0v4l303 1563h246l301 -1567h-232l-47 297h-293l-47 -297h-231zM177 1625v8l207 261h158l207 -261v-8h-150l-137 115l-137 -115h-148zM346 498h229l-114 706z" />
142
+ <glyph unicode="&#xc3;" horiz-adv-x="924" d="M37 0v4l303 1563h246l301 -1567h-232l-47 297h-293l-47 -297h-231zM184 1638v158q0 94 94 94q54 0 141 -34q67 -28 136 -56v88h157v-158q0 -94 -94 -94q-52 0 -143 35q-67 28 -134 55v-88h-157zM346 498h229l-114 706z" />
143
+ <glyph unicode="&#xc4;" horiz-adv-x="924" d="M37 0v4l303 1563h246l301 -1567h-232l-47 297h-293l-47 -297h-231zM200 1633v215h219v-215h-219zM346 498h229l-114 706zM505 1633v215h219v-215h-219z" />
144
+ <glyph unicode="&#xc5;" horiz-adv-x="924" d="M37 0v4l303 1563h246l301 -1567h-232l-47 297h-293l-47 -297h-231zM230 1672v200q0 105 105 105h246q106 0 106 -105v-200q0 -105 -106 -105h-246q-105 0 -105 105zM346 498h229l-114 706zM385 1696h147v152h-147v-152z" />
145
+ <glyph unicode="&#xc6;" horiz-adv-x="1276" d="M27 0v4l446 1561h731v-207h-399v-455h342v-205h-342v-491h405v-207h-632v297h-244l-78 -297h-229zM385 498h193v759z" />
146
+ <glyph unicode="&#xc7;" horiz-adv-x="954" d="M94 143v1278q0 144 139 144h488q143 0 143 -144v-366h-233v309h-303v-1163h303v329h233v-387q0 -143 -143 -143h-488q-139 0 -139 143zM267 -200h155v-84h131v84q-50 22 -101 44q-44 28 -44 89v69h151v-61q52 -25 104 -51q46 -31 46 -92v-107q0 -96 -96 -96h-250 q-96 0 -96 96v109z" />
147
+ <glyph unicode="&#xc8;" horiz-adv-x="809" d="M94 0v1565h643v-207h-409v-457h352v-203h-352v-491h415v-207h-649zM126 1897v9h285l174 -265v-8h-168z" />
148
+ <glyph unicode="&#xc9;" horiz-adv-x="809" d="M94 0v1565h643v-207h-409v-457h352v-203h-352v-491h415v-207h-649zM235 1633v8l172 265h287v-9l-291 -264h-168z" />
149
+ <glyph unicode="&#xca;" horiz-adv-x="809" d="M94 0v1565h643v-207h-409v-457h352v-203h-352v-491h415v-207h-649zM134 1633v8l207 261h158l207 -261v-8h-150l-137 115l-137 -115h-148z" />
150
+ <glyph unicode="&#xcb;" horiz-adv-x="809" d="M94 0v1565h643v-207h-409v-457h352v-203h-352v-491h415v-207h-649zM157 1633v215h219v-215h-219zM462 1633v215h219v-215h-219z" />
151
+ <glyph unicode="&#xcc;" horiz-adv-x="430" d="M-86 1897v9h285l174 -265v-8h-168zM98 0v1565h234v-1565h-234z" />
152
+ <glyph unicode="&#xcd;" horiz-adv-x="430" d="M55 1633v8l172 265h287v-9l-291 -264h-168zM98 0v1565h234v-1565h-234z" />
153
+ <glyph unicode="&#xce;" horiz-adv-x="430" d="M-70 1631v8l207 261h158l207 -261v-8h-150l-137 115l-137 -115h-148zM98 0v1565h234v-1565h-234z" />
154
+ <glyph unicode="&#xcf;" horiz-adv-x="430" d="M-47 1633v215h219v-215h-219zM98 0v1565h234v-1565h-234zM258 1633v215h219v-215h-219z" />
155
+ <glyph unicode="&#xd0;" horiz-adv-x="961" d="M26 697v177h388v-177h-388zM94 0v1565h477q139 0 221 -79.5t82 -217.5v-973q0 -138 -82 -216.5t-221 -78.5h-477zM328 201h168q143 0 143 133v899q0 131 -137 131h-174v-1163z" />
156
+ <glyph unicode="&#xd1;" horiz-adv-x="981" d="M94 0v1565h205l375 -965q-15 72 -15 113v852h228v-1565h-205l-375 985q15 -72 15 -113v-872h-228zM224 1633v158q0 94 94 94q54 0 141 -34q67 -28 136 -56v88h157v-158q0 -94 -94 -94q-52 0 -143 35q-67 28 -134 55v-88h-157z" />
157
+ <glyph unicode="&#xd2;" horiz-adv-x="977" d="M94 143v1278q0 144 139 144h508q142 0 142 -144v-1278q0 -143 -142 -143h-508q-139 0 -139 143zM179 1897v9h285l174 -265v-8h-168zM328 201h321v1163h-321v-1163z" />
158
+ <glyph unicode="&#xd3;" horiz-adv-x="977" d="M94 143v1278q0 144 139 144h508q142 0 142 -144v-1278q0 -143 -142 -143h-508q-139 0 -139 143zM328 201h321v1163h-321v-1163zM338 1633v8l172 265h287v-9l-291 -264h-168z" />
159
+ <glyph unicode="&#xd4;" horiz-adv-x="977" d="M94 143v1278q0 144 139 144h508q142 0 142 -144v-1278q0 -143 -142 -143h-508q-139 0 -139 143zM202 1633v8l207 261h158l207 -261v-8h-150l-137 115l-137 -115h-148zM328 201h321v1163h-321v-1163z" />
160
+ <glyph unicode="&#xd5;" horiz-adv-x="977" d="M94 143v1278q0 144 139 144h508q142 0 142 -144v-1278q0 -143 -142 -143h-508q-139 0 -139 143zM223 1638v158q0 94 94 94q54 0 141 -34q67 -28 136 -56v88h157v-158q0 -94 -94 -94q-52 0 -143 35q-67 28 -134 55v-88h-157zM328 201h321v1163h-321v-1163z" />
161
+ <glyph unicode="&#xd6;" horiz-adv-x="977" d="M94 143v1278q0 144 139 144h508q142 0 142 -144v-1278q0 -143 -142 -143h-508q-139 0 -139 143zM226 1633v215h219v-215h-219zM328 201h321v1163h-321v-1163zM531 1633v215h219v-215h-219z" />
162
+ <glyph unicode="&#xd7;" horiz-adv-x="942" d="M134 474l205 205l-204 204l132 131l204 -204l204 205l132 -132l-205 -204l204 -204l-132 -132l-204 205l-204 -205z" />
163
+ <glyph unicode="&#xd8;" horiz-adv-x="977" d="M94 143v1278q0 144 139 144h359l43 153h239v-12l-47 -164q56 -34 56 -121v-1278q0 -143 -142 -143h-348l-43 -154h-237v13l45 157q-64 35 -64 127zM328 201h321v1163h-321v-1163z" />
164
+ <glyph unicode="&#xd9;" horiz-adv-x="971" d="M94 143v1422h234v-1364h315v1364h234v-1422q0 -143 -144 -143h-497q-142 0 -142 143zM178 1897v9h285l174 -265v-8h-168z" />
165
+ <glyph unicode="&#xda;" horiz-adv-x="971" d="M94 143v1422h234v-1364h315v1364h234v-1422q0 -143 -144 -143h-497q-142 0 -142 143zM329 1633v8l172 265h287v-9l-291 -264h-168z" />
166
+ <glyph unicode="&#xdb;" horiz-adv-x="971" d="M94 143v1422h234v-1364h315v1364h234v-1422q0 -143 -144 -143h-497q-142 0 -142 143zM199 1634v8l207 261h158l207 -261v-8h-150l-137 115l-137 -115h-148z" />
167
+ <glyph unicode="&#xdc;" horiz-adv-x="971" d="M94 143v1422h234v-1364h315v1364h234v-1422q0 -143 -144 -143h-497q-142 0 -142 143zM223 1633v215h219v-215h-219zM528 1633v215h219v-215h-219z" />
168
+ <glyph unicode="&#xdd;" horiz-adv-x="907" d="M27 1556q-1 1 0 9h241l187 -680l186 680h240v-9l-207 -654q-38 -97 -103 -327v-575h-235v575q-16 78 -46 165q-53 149 -57 162zM324 1633v8l172 265h287v-9l-291 -264h-168z" />
169
+ <glyph unicode="&#xde;" horiz-adv-x="821" d="M109 0v1565h200v-348h295q148 0 148 -132v-698q0 -133 -138 -133h-305v-254h-200zM309 424h242v623h-242v-623z" />
170
+ <glyph unicode="&#xdf;" horiz-adv-x="844" d="M82 0v1565h430q244 0 244 -246v-279q0 -78 -40 -127q-3 -3 -104 -96q107 -91 111 -96q37 -45 37 -131v-453q0 -137 -137 -137h-220v180h132v461l-138 137v78l131 131v303q0 84 -84 84h-133v-1374h-229z" />
171
+ <glyph unicode="&#xe0;" horiz-adv-x="815" d="M78 119v364q0 125 129 125h309v232h-219v-144h-207v189q0 125 129 125h387q127 0 127 -125v-885h-219v35l-156 -24q-102 -15 -155 -15q-125 0 -125 123zM117 1341v9h285l174 -265v-8h-168zM297 174l219 8v271h-219v-279z" />
172
+ <glyph unicode="&#xe1;" horiz-adv-x="815" d="M78 119v364q0 125 129 125h309v232h-219v-144h-207v189q0 125 129 125h387q127 0 127 -125v-885h-219v35l-156 -24q-102 -15 -155 -15q-125 0 -125 123zM252 1077v8l172 265h287v-9l-291 -264h-168zM297 174l219 8v271h-219v-279z" />
173
+ <glyph unicode="&#xe2;" horiz-adv-x="815" d="M78 119v364q0 125 129 125h309v232h-219v-144h-207v189q0 125 129 125h387q127 0 127 -125v-885h-219v35l-156 -24q-102 -15 -155 -15q-125 0 -125 123zM128 1077v8l207 261h158l207 -261v-8h-150l-137 115l-137 -115h-148zM297 174l219 8v271h-219v-279z" />
174
+ <glyph unicode="&#xe3;" horiz-adv-x="815" d="M78 119v364q0 125 129 125h309v232h-219v-144h-207v189q0 125 129 125h387q127 0 127 -125v-885h-219v35l-156 -24q-102 -15 -155 -15q-125 0 -125 123zM151 1077v158q0 94 94 94q54 0 141 -34q67 -28 136 -56v88h157v-158q0 -94 -94 -94q-52 0 -143 35q-67 28 -134 55 v-88h-157zM297 174l219 8v271h-219v-279z" />
175
+ <glyph unicode="&#xe4;" horiz-adv-x="815" d="M78 119v364q0 125 129 125h309v232h-219v-144h-207v189q0 125 129 125h387q127 0 127 -125v-885h-219v35l-156 -24q-102 -15 -155 -15q-125 0 -125 123zM152 1077v215h219v-215h-219zM297 174l219 8v271h-219v-279zM457 1077v215h219v-215h-219z" />
176
+ <glyph unicode="&#xe5;" horiz-adv-x="815" d="M78 119v364q0 125 129 125h309v232h-219v-144h-207v189q0 125 129 125h387q127 0 127 -125v-885h-219v35l-156 -24q-102 -15 -155 -15q-125 0 -125 123zM187 1182v200q0 105 105 105h246q106 0 106 -105v-200q0 -105 -106 -105h-246q-105 0 -105 105zM297 174l219 8v271 h-219v-279zM342 1206h147v152h-147v-152z" />
177
+ <glyph unicode="&#xe6;" horiz-adv-x="1219" d="M78 119v362q0 125 129 125h299v234h-209v-146h-207v191q0 125 129 125h791q127 0 127 -125v-371l-64 -61h-360v-285h205v170h219v-213q0 -125 -127 -125h-375q-75 0 -105 39l-164 -26q-109 -17 -163 -17q-125 0 -125 123zM297 172l209 8v273h-209v-281zM713 604h205v238 h-205v-238z" />
178
+ <glyph unicode="&#xe7;" horiz-adv-x="817" d="M82 125v760q0 125 129 125h397q127 0 127 -125v-240h-223v174h-205v-629h205v193h223v-258q0 -125 -127 -125h-397q-129 0 -129 125zM186 -200h155v-84h131v84q-50 22 -101 44q-44 28 -44 89v69h151v-61q52 -25 104 -51q46 -31 46 -92v-107q0 -96 -96 -96h-250 q-96 0 -96 96v109z" />
179
+ <glyph unicode="&#xe8;" horiz-adv-x="819" d="M82 125v760q0 125 129 125h395q129 0 129 -125v-371l-63 -63h-371v-283h215v168h219v-211q0 -125 -129 -125h-395q-129 0 -129 125zM112 1341v9h285l174 -265v-8h-168zM301 600h215v242h-215v-242z" />
180
+ <glyph unicode="&#xe9;" horiz-adv-x="819" d="M82 125v760q0 125 129 125h395q129 0 129 -125v-371l-63 -63h-371v-283h215v168h219v-211q0 -125 -129 -125h-395q-129 0 -129 125zM244 1077v8l172 265h287v-9l-291 -264h-168zM301 600h215v242h-215v-242z" />
181
+ <glyph unicode="&#xea;" horiz-adv-x="819" d="M82 125v760q0 125 129 125h395q129 0 129 -125v-371l-63 -63h-371v-283h215v168h219v-211q0 -125 -129 -125h-395q-129 0 -129 125zM124 1077v8l207 261h158l207 -261v-8h-150l-137 115l-137 -115h-148zM301 600h215v242h-215v-242z" />
182
+ <glyph unicode="&#xeb;" horiz-adv-x="819" d="M82 125v760q0 125 129 125h395q129 0 129 -125v-371l-63 -63h-371v-283h215v168h219v-211q0 -125 -129 -125h-395q-129 0 -129 125zM147 1077v215h219v-215h-219zM301 600h215v242h-215v-242zM452 1077v215h219v-215h-219z" />
183
+ <glyph unicode="&#xec;" horiz-adv-x="401" d="M-100 1341v9h285l174 -265v-8h-168zM88 0v1010h225v-1010h-225z" />
184
+ <glyph unicode="&#xed;" horiz-adv-x="401" d="M39 1077v8l172 265h287v-9l-291 -264h-168zM88 0v1010h225v-1010h-225z" />
185
+ <glyph unicode="&#xee;" horiz-adv-x="401" d="M-84 1077v8l207 261h158l207 -261v-8h-150l-137 115l-137 -115h-148zM88 0v1010h225v-1010h-225z" />
186
+ <glyph unicode="&#xef;" horiz-adv-x="401" d="M-60 1077v215h219v-215h-219zM88 0v1010h225v-1010h-225zM245 1077v215h219v-215h-219z" />
187
+ <glyph unicode="&#xf0;" horiz-adv-x="803" d="M86 127v719q0 127 129 127h229v131l-143 -66h-53v140l196 88v141h-163v-111h-172v142q0 50 36 88.5t86 38.5h291q82 0 108 -72q15 -40 15 -135l117 53v-162l-117 -53v-1069q0 -55 -34.5 -91t-88.5 -36h-313q-123 0 -123 127zM281 170h170v637h-170v-637z" />
188
+ <glyph unicode="&#xf1;" d="M82 0v1010h229v-37q80 13 159 25q98 16 161 16q125 0 125 -123v-891h-230v819l-215 -4v-815h-229zM155 1077v158q0 94 94 94q54 0 141 -34q67 -28 136 -56v88h157v-158q0 -94 -94 -94q-52 0 -143 35q-67 28 -134 55v-88h-157z" />
189
+ <glyph unicode="&#xf2;" horiz-adv-x="831" d="M82 125v760q0 125 129 125h410q127 0 127 -125v-760q0 -125 -127 -125h-410q-129 0 -129 125zM112 1341v9h285l174 -265v-8h-168zM307 190h217v629h-217v-629z" />
190
+ <glyph unicode="&#xf3;" horiz-adv-x="831" d="M82 125v760q0 125 129 125h410q127 0 127 -125v-760q0 -125 -127 -125h-410q-129 0 -129 125zM254 1077v8l172 265h287v-9l-291 -264h-168zM307 190h217v629h-217v-629z" />
191
+ <glyph unicode="&#xf4;" horiz-adv-x="831" d="M82 125v760q0 125 129 125h410q127 0 127 -125v-760q0 -125 -127 -125h-410q-129 0 -129 125zM121 1077v8l207 261h158l207 -261v-8h-150l-137 115l-137 -115h-148zM307 190h217v629h-217v-629z" />
192
+ <glyph unicode="&#xf5;" horiz-adv-x="831" d="M82 125v760q0 125 129 125h410q127 0 127 -125v-760q0 -125 -127 -125h-410q-129 0 -129 125zM151 1077v158q0 94 94 94q54 0 141 -34q67 -28 136 -56v88h157v-158q0 -94 -94 -94q-52 0 -143 35q-67 28 -134 55v-88h-157zM307 190h217v629h-217v-629z" />
193
+ <glyph unicode="&#xf6;" horiz-adv-x="831" d="M82 125v760q0 125 129 125h410q127 0 127 -125v-760q0 -125 -127 -125h-410q-129 0 -129 125zM153 1077v215h219v-215h-219zM307 190h217v629h-217v-629zM458 1077v215h219v-215h-219z" />
194
+ <glyph unicode="&#xf7;" d="M70 625v126h698v-126h-698zM314 430q0 44 30.5 75.5t73.5 31.5q44 0 74.5 -31.5t30.5 -75.5t-30.5 -75t-74.5 -31q-43 0 -73.5 31t-30.5 75zM314 944q0 44 30.5 75t73.5 31q44 0 74.5 -31t30.5 -75t-30.5 -75.5t-74.5 -31.5q-43 0 -73.5 31.5t-30.5 75.5z" />
195
+ <glyph unicode="&#xf8;" horiz-adv-x="831" d="M82 125v760q0 125 129 125h262l53 153h219q1 -11 0 -12l-53 -156q56 -27 56 -110v-760q0 -125 -127 -125h-267l-53 -154h-217v13l53 155q-55 28 -55 111zM307 190h217v629h-217v-629z" />
196
+ <glyph unicode="&#xf9;" d="M82 119v891h227v-820l217 5v815h228v-1010h-228v35q-79 -13 -159 -26q-97 -15 -160 -15q-125 0 -125 125zM115 1341v9h285l174 -265v-8h-168z" />
197
+ <glyph unicode="&#xfa;" d="M82 119v891h227v-820l217 5v815h228v-1010h-228v35q-79 -13 -159 -26q-97 -15 -160 -15q-125 0 -125 125zM253 1077v8l172 265h287v-9l-291 -264h-168z" />
198
+ <glyph unicode="&#xfb;" d="M82 119v891h227v-820l217 5v815h228v-1010h-228v35q-79 -13 -159 -26q-97 -15 -160 -15q-125 0 -125 125zM134 1077v8l207 261h158l207 -261v-8h-150l-137 115l-137 -115h-148z" />
199
+ <glyph unicode="&#xfc;" d="M82 119v891h227v-820l217 5v815h228v-1010h-228v35q-79 -13 -159 -26q-97 -15 -160 -15q-125 0 -125 125zM157 1077v215h219v-215h-219zM462 1077v215h219v-215h-219z" />
200
+ <glyph unicode="&#xfd;" horiz-adv-x="797" d="M31 1010h235l133 -664l133 664h234l-253 -997l-97 -382h-234l105 377zM268 1077v8l172 265h287v-9l-291 -264h-168z" />
201
+ <glyph unicode="&#xfe;" horiz-adv-x="735" d="M90 -410v1975h195v-613l196 33q168 0 168 -166v-594q0 -100 -59.5 -162.5t-159.5 -62.5h-145v-410h-195zM285 158h57q113 0 113 125v518h-170v-643z" />
202
+ <glyph unicode="&#xff;" horiz-adv-x="797" d="M31 1010h235l133 -664l133 664h234l-253 -997l-97 -382h-234l105 377zM137 1077v215h219v-215h-219zM442 1077v215h219v-215h-219z" />
203
+ <glyph unicode="&#x152;" horiz-adv-x="1323" d="M94 143v1278q0 144 142 144h1015v-207h-399v-455h342v-205h-342v-491h405v-207h-1021q-142 0 -142 143zM328 201h293v1163h-293v-1163z" />
204
+ <glyph unicode="&#x153;" horiz-adv-x="1235" d="M82 125v760q0 125 129 125h815q127 0 127 -125v-371l-63 -63h-363v-283h207v168h219v-211q0 -125 -127 -125h-815q-129 0 -129 125zM305 186h213v637h-213v-637zM727 600h207v242h-207v-242z" />
205
+ <glyph unicode="&#x178;" horiz-adv-x="907" d="M27 1556q-1 1 0 9h241l187 -680l186 680h240v-9l-207 -654q-38 -97 -103 -327v-575h-235v575q-16 78 -46 165q-53 149 -57 162zM192 1633v215h219v-215h-219zM497 1633v215h219v-215h-219z" />
206
+ <glyph unicode="&#x2c6;" horiz-adv-x="836" d="M133 1077v8l207 261h158l207 -261v-8h-150l-137 115l-137 -115h-148z" />
207
+ <glyph unicode="&#x2dc;" horiz-adv-x="836" d="M154 1077v158q0 94 94 94q54 0 141 -34q67 -28 136 -56v88h157v-158q0 -94 -94 -94q-52 0 -143 35q-67 28 -134 55v-88h-157z" />
208
+ <glyph unicode="&#x2000;" horiz-adv-x="988" />
209
+ <glyph unicode="&#x2001;" horiz-adv-x="1977" />
210
+ <glyph unicode="&#x2002;" horiz-adv-x="988" />
211
+ <glyph unicode="&#x2003;" horiz-adv-x="1977" />
212
+ <glyph unicode="&#x2004;" horiz-adv-x="659" />
213
+ <glyph unicode="&#x2005;" horiz-adv-x="494" />
214
+ <glyph unicode="&#x2006;" horiz-adv-x="329" />
215
+ <glyph unicode="&#x2007;" horiz-adv-x="329" />
216
+ <glyph unicode="&#x2008;" horiz-adv-x="247" />
217
+ <glyph unicode="&#x2009;" horiz-adv-x="395" />
218
+ <glyph unicode="&#x200a;" horiz-adv-x="109" />
219
+ <glyph unicode="&#x2010;" horiz-adv-x="631" d="M76 498v209h477v-209h-477z" />
220
+ <glyph unicode="&#x2011;" horiz-adv-x="631" d="M76 498v209h477v-209h-477z" />
221
+ <glyph unicode="&#x2012;" horiz-adv-x="631" d="M76 498v209h477v-209h-477z" />
222
+ <glyph unicode="&#x2013;" horiz-adv-x="881" d="M76 494v213h729v-213h-729z" />
223
+ <glyph unicode="&#x2014;" horiz-adv-x="1335" d="M76 494v213h1181v-213h-1181z" />
224
+ <glyph unicode="&#x2018;" horiz-adv-x="401" d="M51 1075l139 490h148l-51 -490h-236z" />
225
+ <glyph unicode="&#x2019;" horiz-adv-x="401" d="M63 1075l52 490h235l-137 -490h-150z" />
226
+ <glyph unicode="&#x201a;" horiz-adv-x="401" d="M53 -215l51 489h238l-139 -489h-150z" />
227
+ <glyph unicode="&#x201c;" horiz-adv-x="735" d="M49 1075l141 490h148l-51 -490h-238zM383 1075l139 490h148l-49 -490h-238z" />
228
+ <glyph unicode="&#x201d;" horiz-adv-x="735" d="M63 1075l52 490h235l-137 -490h-150zM397 1075l52 490h235l-139 -490h-148z" />
229
+ <glyph unicode="&#x201e;" horiz-adv-x="735" d="M63 -215l52 489h235l-137 -489h-150zM397 -215l52 489h235l-139 -489h-148z" />
230
+ <glyph unicode="&#x2022;" horiz-adv-x="944" d="M94 543v477q0 145 148 145h460q146 0 146 -145v-477q0 -146 -146 -146h-460q-148 0 -148 146z" />
231
+ <glyph unicode="&#x2026;" horiz-adv-x="1133" d="M76 0v242h225v-242h-225zM453 0v242h225v-242h-225zM829 0v242h226v-242h-226z" />
232
+ <glyph unicode="&#x202f;" horiz-adv-x="395" />
233
+ <glyph unicode="&#x2039;" horiz-adv-x="651" d="M66 537v36l253 381h250v-8l-260 -391l260 -399h-250z" />
234
+ <glyph unicode="&#x203a;" horiz-adv-x="651" d="M80 156v8l260 391l-260 399h250l256 -381v-36l-256 -381h-250z" />
235
+ <glyph unicode="&#x205f;" horiz-adv-x="494" />
236
+ <glyph unicode="&#x20ac;" horiz-adv-x="954" d="M80 570v162h61v134h-61v164h61v391q0 144 140 144h430q143 0 143 -144v-297h-216v245h-270v-339h499v-164h-499v-134h499v-162h-499v-374h270v264h216v-317q0 -143 -143 -143h-430q-140 0 -140 143v427h-61z" />
237
+ <glyph unicode="&#x2122;" horiz-adv-x="1229" d="M51 1430v135h455v-135h-154v-768h-145v768h-156zM582 662v903h153l133 -482l136 482h151v-903h-145v485l-99 -397h-88l-98 397v-485h-143z" />
238
+ <glyph unicode="&#xe000;" horiz-adv-x="1010" d="M0 0v1010h1010v-1010h-1010z" />
239
+ <glyph unicode="&#xfb01;" horiz-adv-x="924" d="M27 815v195h104v430q0 125 127 125h451q127 0 127 -125v-285h-228v211h-250v-356h478v-1010h-228v815h-250v-815h-227v815h-104z" />
240
+ <glyph unicode="&#xfb02;" horiz-adv-x="924" d="M27 815v195h104v430q0 125 127 125h578v-1565h-228v1366h-250v-356h146v-195h-146v-815h-227v815h-104z" />
241
+ </font>
242
+ </defs></svg>
images/fonts/agencyb-webfont.ttf ADDED
Binary file
images/fonts/agencyb-webfont.woff ADDED
Binary file
images/fonts/courgette.woff ADDED
Binary file
images/fonts/raleway.woff ADDED
Binary file
images/girl.png ADDED
Binary file
images/lq.jpg DELETED
Binary file
images/menu_bg.png DELETED
Binary file
images/payments.jpg DELETED
Binary file
images/plug.png ADDED
Binary file
images/plus.png ADDED
Binary file
images/quick.png ADDED
Binary file
images/spd.jpg DELETED
Binary file
images/ss_buy_now.png ADDED
Binary file
images/ss_no.png ADDED
Binary file
images/ss_yes.png ADDED
Binary file
images/table_head_1.jpg ADDED
Binary file
images/table_head_2.jpg ADDED
Binary file
images/table_head_3.png ADDED
Binary file
images/table_head_4.png ADDED
Binary file
images/tag.png ADDED
Binary file
images/wd.jpg DELETED
Binary file
images/wp.png ADDED
Binary file
images/wr.jpg DELETED
Binary file
images/wtd.jpg DELETED
Binary file
premium.php CHANGED
@@ -9,13 +9,14 @@ update_option('acx_si_td', "hide");
9
  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 message again.
14
  </div>
15
  <?php
16
  }
17
  ?>
18
- <div id="acx_help_page">
19
  <?php
20
  socialicons_comparison(1);
21
  ?>
9
  display:none;
10
  }
11
  </style>
12
+
13
  <div class="error" style="background: none repeat scroll 0pt 0pt infobackground; border: 1px solid inactivecaption; padding: 5px;line-height:16px;">
14
  Thanks again for using the plugin. we will never show the message again.
15
  </div>
16
  <?php
17
  }
18
  ?>
19
+ <div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 98%;'>
20
  <?php
21
  socialicons_comparison(1);
22
  ?>
readme.txt CHANGED
@@ -2,12 +2,12 @@
2
  Contributors: Acurax
3
  Donate link:http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
4
 
5
- Tags: social media,social,social media widget,social media icon,socialmedia,pinterest,social icon,social floating icon,social profiles,floating social media button,twitter facebook,social media button,google plus,google+
6
  Requires at least: 2.8
7
- Tested up to: 3.9.1
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
11
 
12
  == Description ==
13
 
@@ -25,9 +25,9 @@ A Quicklook
25
 
26
  ★ Enable/Disable Floating
27
 
28
- ★ Most Downloaded Plugin With Floating Support
29
 
30
- ★ Less Load - Essential Social Medias Only
31
 
32
  ★ Easy to Configure
33
 
@@ -35,13 +35,11 @@ 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 social media widgets,
39
- short-code 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
 
47
  = [ LIVE DEMO ] =
@@ -53,11 +51,11 @@ even if user scrolls the page, thus it floats
53
 
54
  Multiple Social Media Widget Support
55
 
56
- ★ Each Social Media Widget Can Have Seperate Icon Theme and Icon Size
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
 
@@ -86,13 +84,7 @@ We Always Look Forward Your Comments and Suggestions for Future Updates. You can
86
 
87
  [Click Here To See a Live Demo](http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/ "Floating Social Media Icon Demo")
88
 
89
- **Want More Features?**
90
-
91
- [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")
92
-
93
-
94
-
95
- [Click Here to Order Professional Installation/Integration Service](http://clients.acurax.com/link.php?id=4/ "Professional Integration Service")
96
 
97
  **About**
98
 
@@ -114,7 +106,7 @@ Extract the zip file and just drop the contents in the wp-content/plugins/ direc
114
 
115
  Then Visit Plugin Configuration Settings and select a theme and size for icons. configure your social profile url. You are done!
116
 
117
- You need to go to Apperance >> Widgets to add "Acx Social Icon" Widget to your sidebar
118
  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.
119
 
120
  [youtube http://www.youtube.com/watch?v=oK1iCywcjZY]
@@ -124,7 +116,7 @@ If you selected display mode as manual, you can use the shortcodes which is clea
124
  NOTE: This video is old version video. Check Screenshots for
125
  New Settings Page Option Preview.
126
 
127
- After Installation,Dont Forgot to Cast Your Vote on Combatibility :) Thanks for trying...
128
 
129
  == Frequently Asked Questions ==
130
 
@@ -134,11 +126,11 @@ To hide an icon, Just dont give any value for that button link.. it will automat
134
 
135
  = Why the floating social media icon is not displaying on my page even if i made all properly? =
136
 
137
- Our Plugin Uses Hooks to integrate the suppported javascripts styles and html to the theme. So Make sure your theme **footer.php** have **&lt;?php wp_footer(); ?&gt;** and **header.php** have **&lt;?php wp_head(); ?&gt;** , Most of all the plugins work with the support of this code and if this is not present on your theme.. Its your themes mistake..
138
 
139
  = How can i integrate the **&lt;?php wp_footer(); ?&gt;** and **&lt;?php wp_head(); ?&gt;** to my theme if it is not present on my theme? =
140
 
141
- It can be easily done.. Just to go Theme Editor which is under apperance and select footer.php and add **&lt;?php wp_footer(); ?&gt;** before the closing body tag which is **</body>** and then go and edit header.php and add **&lt;?php wp_head(); ?&gt;** just before the closing head tag which is **</head>**
142
 
143
  = Can i disable the automated integration and place where ever i want? =
144
 
@@ -183,7 +175,7 @@ Possible, Its an advanced option, you just needs to upload your social icons to
183
 
184
  Plugin Support Social Media Widget with almost same features of the shortcodes, You can have **many number of widgets where on each widget you can configure the Social Media Icons size and Icon Design/Style**.
185
 
186
- To add a widget to your sidebar.. you theme must support sidebars. Go to **Apperance >> Widgets**,to add "Acx Social Icons" widget to your sidebar.
187
 
188
  = How Many Social Media Widget Can i use? =
189
 
@@ -220,6 +212,14 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
220
 
221
  == Upgrade Notice ==
222
 
 
 
 
 
 
 
 
 
223
  = 1.3.4 =
224
  * March 07, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
225
  * Added Theme Warning Ignore Option
@@ -332,6 +332,14 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
332
 
333
  == Changelog ==
334
 
 
 
 
 
 
 
 
 
335
  = 1.3.4 =
336
  * March 07, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
337
  * Added Theme Warning Ignore Option
2
  Contributors: Acurax
3
  Donate link:http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
4
 
5
+ Tags: floating social media, social network icon, social media widget, social media icon, socialmedia, social network widget, social floating icon, social profiles, floating social media button, social media button
6
  Requires at least: 2.8
7
+ Tested up to: 4.0
8
  Stable tag: trunk
9
 
10
+ Easy 2 Use Plugin 2 Show SocialMedia Icons That Floats,Can Configure Social Icon Design,Order & Size, Support Widget & Shortcode
11
 
12
  == Description ==
13
 
25
 
26
  ★ Enable/Disable Floating
27
 
28
+ ★ Most Downloaded Floating Social Network Plugin.
29
 
30
+ ★ Less Load - Essential Social Media Only
31
 
32
  ★ Easy to Configure
33
 
35
 
36
  ★ Featured Plugin On Many Plugin Review Sites
37
 
38
+ You can make the social media icons to appear automatically or you can use social media widgets,
39
+ short-code or PHP code to display the social media icons where ever you like to want.
 
40
 
41
+ If you choose to show Social Media Icon automatically.
42
+ The icons will fly from top left to bottom right and the social media icons will stay there
 
43
  even if user scrolls the page, thus it floats
44
 
45
  = [ LIVE DEMO ] =
51
 
52
  Multiple Social Media Widget Support
53
 
54
+ ★ Each Social Media Widget Can Have Separate Icon Theme and Icon Size
55
 
56
  Shortcode Support
57
 
58
+ ★ Each Shortcode Support Separate social media Icon Theme and Icon Size (check faq)
59
 
60
  Icons in content
61
 
84
 
85
  [Click Here To See a Live Demo](http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/ "Floating Social Media Icon Demo")
86
 
87
+ [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")
 
 
 
 
 
 
88
 
89
  **About**
90
 
106
 
107
  Then Visit Plugin Configuration Settings and select a theme and size for icons. configure your social profile url. You are done!
108
 
109
+ You need to go to Appearance >> Widgets to add "Acx Social Icon" Widget to your sidebar
110
  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.
111
 
112
  [youtube http://www.youtube.com/watch?v=oK1iCywcjZY]
116
  NOTE: This video is old version video. Check Screenshots for
117
  New Settings Page Option Preview.
118
 
119
+ After Installation,Dont Forgot to Cast Your Vote on Compatibility :) Thanks for trying...
120
 
121
  == Frequently Asked Questions ==
122
 
126
 
127
  = Why the floating social media icon is not displaying on my page even if i made all properly? =
128
 
129
+ Our Plugin Uses Hooks to integrate the supported javascripts styles and html to the theme. So Make sure your theme **footer.php** have **&lt;?php wp_footer(); ?&gt;** and **header.php** have **&lt;?php wp_head(); ?&gt;** , Most of all the plugins work with the support of this code and if this is not present on your theme.. Its your themes mistake..
130
 
131
  = How can i integrate the **&lt;?php wp_footer(); ?&gt;** and **&lt;?php wp_head(); ?&gt;** to my theme if it is not present on my theme? =
132
 
133
+ It can be easily done.. Just to go Theme Editor which is under appearance and select footer.php and add **&lt;?php wp_footer(); ?&gt;** before the closing body tag which is **</body>** and then go and edit header.php and add **&lt;?php wp_head(); ?&gt;** just before the closing head tag which is **</head>**
134
 
135
  = Can i disable the automated integration and place where ever i want? =
136
 
175
 
176
  Plugin Support Social Media Widget with almost same features of the shortcodes, You can have **many number of widgets where on each widget you can configure the Social Media Icons size and Icon Design/Style**.
177
 
178
+ To add a widget to your sidebar.. you theme must support sidebars. Go to **Appearance >> Widgets**,to add "Acx Social Icons" widget to your sidebar.
179
 
180
  = How Many Social Media Widget Can i use? =
181
 
212
 
213
  == Upgrade Notice ==
214
 
215
+ = 1.3.5 =
216
+ * June 04, 2014 | NOTE: Upgrading Will Not Make Any Changes to Settings/Configurations. Upgrade With Confidence :)
217
+ * Added Option to Disable Floating Icons on Mobile Devices
218
+ * Theme Warning Ignore Option
219
+ * Added Troubleshooting Options
220
+ * Improved User Interface
221
+ * Stable Release
222
+
223
  = 1.3.4 =
224
  * March 07, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
225
  * Added Theme Warning Ignore Option
332
 
333
  == Changelog ==
334
 
335
+ = 1.3.5 =
336
+ * June 04, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
337
+ * Added Option to Disable Floating on Mobile Devices
338
+ * Theme Warning Ignore Option
339
+ * Added Troubleshooting Options
340
+ * Improved User Interface
341
+ * Stable Release
342
+
343
  = 1.3.4 =
344
  * March 07, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
345
  * Added Theme Warning Ignore Option
social-help.php CHANGED
@@ -1,16 +1,16 @@
1
- <div id="acx_help_page">
2
  <?php
3
  $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
4
  if($acx_si_fsmi_hide_advert == "no")
5
  { ?>
6
  <div id="acx_fsmi_premium">
7
- <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>
8
  <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>
9
  </div> <!-- acx_fsmi_premium -->
10
  <?php } ?>
11
- <h2>Floating Social Media Icon - Wordpress Plugin - Help/Support</h2>
12
- <p>Thank you for using Floating Social Media Icon Plugin For Your Wordpress Social Media Profile Linking Need.</p>
13
- <h3><a href="http://clients.acurax.com/link.php?id=8" target="_blank">Click here to open the FAQ and Help Page</a></h3>
14
  <?php
15
  if($acx_si_fsmi_hide_advert == "no")
16
  {
@@ -18,4 +18,5 @@ socialicons_comparison(1);
18
  acurax_optin();
19
  }
20
  ?>
21
- </div> <!-- acx_help_page -->
 
1
+ <div id="acx_help_page"><div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 98%;'>
2
  <?php
3
  $acx_si_fsmi_hide_advert = get_option('acx_si_fsmi_hide_advert');
4
  if($acx_si_fsmi_hide_advert == "no")
5
  { ?>
6
  <div id="acx_fsmi_premium">
7
+ <a style="margin: 8px 0px 0px 10px; float: left; font-size: 16px; font-weight: bold;" href="http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?utm_source=plugin&utm_medium=highlight&utm_campaign=fsmi" target="_blank">Fully Featured - Premium Floating Social Media Icon</a>
8
  <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>
9
  </div> <!-- acx_fsmi_premium -->
10
  <?php } ?>
11
+ <h2 style="text-align:center;">Floating Social Media Icon - Wordpress Plugin - Help/Support</h2>
12
+ <p style="text-align:center;">Thank you for using Floating Social Media Icon Plugin For Your Wordpress Social Media Profile Linking Need.</p>
13
+ <h3 style="text-align:center;"><a href="http://clients.acurax.com/link.php?id=8" target="_blank" class="button">Click here to open the FAQ and Help Page</a></h3>
14
  <?php
15
  if($acx_si_fsmi_hide_advert == "no")
16
  {
18
  acurax_optin();
19
  }
20
  ?>
21
+ </div> <!-- acx_help_page -->
22
+ </div>
social-icon.php CHANGED
@@ -75,7 +75,7 @@ update_option('acx_si_installed_date', $acx_si_installed_date);
75
  $social_icon_array_order = array(0,1,2,3,4,5,6);
76
  $social_icon_array_order = serialize($social_icon_array_order);
77
  update_option('social_icon_array_order', $social_icon_array_order);
78
- $acx_fsmi_si_current_version = "1.3.4"; // Current Version
79
  update_option('acx_fsmi_si_current_version', $acx_fsmi_si_current_version);
80
  } else
81
  {
@@ -122,25 +122,38 @@ update_option('acx_si_installed_date', $acx_si_installed_date);
122
 
123
 
124
  <div class="wrap">
 
125
  <?php
126
  $acx_si_fsmi_acx_service_banners = get_option('acx_si_fsmi_acx_service_banners');
127
  if ($acx_si_fsmi_acx_service_banners != "no") { ?>
128
- <p class="widefat" style="padding:8px;width:99%;height: 75px;">
129
- <b>Acurax Services >> </b><br>
130
- <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wtd" style="background:url(<?php echo plugins_url('images/wtd.jpg', __FILE__);?>);"></a>
131
-
132
- <a href="http://www.acurax.com/services/web-designing.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wd" style="background:url(<?php echo plugins_url('images/wd.jpg', __FILE__);?>);"></a>
133
- <a href="http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="spd" style="background:url(<?php echo plugins_url('images/spd.jpg', __FILE__);?>);"></a>
134
- <a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" id="wrd" style="background:url(<?php echo plugins_url('images/wr.jpg', __FILE__);?>);"></a>
135
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  <?php } else { ?>
137
  <p class="widefat" style="padding:8px;width:99%;">
138
  <b>Acurax Services >> </b>
139
- <a href="http://www.acurax.com/services/blog-design.php" target="_blank">Wordpress Theme Design</a> |
140
- <a href="http://www.acurax.com/services/web-designing.php" target="_blank">Website Design</a> |
141
- <a href="http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php" target="_blank">Social Profile Design</a> |
142
- <a href="http://www.acurax.com/social-media-marketing-optimization/twitter-background-design.php" target="_blank">Twitter Background Design</a> |
143
- <a href="http://www.acurax.com/social-media-marketing-optimization/facebook-page-design.php" target="_blank">Facebook Page Design</a>
144
  </p>
145
  <?php } ?>
146
  <?php
@@ -148,7 +161,7 @@ if($acx_si_fsmi_hide_advert == "no")
148
  {
149
  ?>
150
  <div id="acx_fsmi_premium">
151
- <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>
152
  <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>
153
  </div> <!-- acx_fsmi_premium -->
154
  <?php } ?>
@@ -375,14 +388,14 @@ Please do a favour by enabling back-link to our site. <a href="admin.php?page=Ac
375
  <?php
376
  } ?>
377
  <p class="submit">
378
- <input type="submit" name="Submit" value="<?php _e('Save Configuration', 'acx_si_config' ) ?>" />
379
  <a name="updated">.</a>
380
  </p>
381
  </form>
382
  <?php if($_GET["status"] == "updated") { ?>
383
  <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 Floating Social Media Icon Update Successfully Completed - Thank You</div>
384
  <?php
385
- $acx_fsmi_si_current_version = "1.3.4"; // Current Version
386
  update_option('acx_fsmi_si_current_version', $acx_fsmi_si_current_version);
387
  } ?>
388
  <hr/>
@@ -396,4 +409,4 @@ socialicons_comparison(1); ?>
396
  <p class="widefat" style="padding:8px;width:99%;">
397
  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>
398
  </p>
399
- </div>
75
  $social_icon_array_order = array(0,1,2,3,4,5,6);
76
  $social_icon_array_order = serialize($social_icon_array_order);
77
  update_option('social_icon_array_order', $social_icon_array_order);
78
+ $acx_fsmi_si_current_version = "1.3.5"; // Current Version
79
  update_option('acx_fsmi_si_current_version', $acx_fsmi_si_current_version);
80
  } else
81
  {
122
 
123
 
124
  <div class="wrap">
125
+ <div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 8px; margin-top: 5px; border-radius: 15px; min-height: 450px; width: 100%;'>
126
  <?php
127
  $acx_si_fsmi_acx_service_banners = get_option('acx_si_fsmi_acx_service_banners');
128
  if ($acx_si_fsmi_acx_service_banners != "no") { ?>
129
+ <div id="acx_ad_banners_fsmi">
130
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" class="acx_ad_fsmi_1">
131
+ <div class="acx_ad_fsmi_title">Wordpress Expert Support</div> <!-- acx_ad_fsmi_title -->
132
+ <div class="acx_ad_fsmi_desc">Troubleshoot WordPress site issues</div> <!-- acx_ad_fsmi_desc -->
133
+ </a> <!-- acx_ad_fsmi_1 -->
134
+
135
+ <a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" class="acx_ad_fsmi_1">
136
+ <div class="acx_ad_fsmi_title">Custom Theme Design</div> <!-- acx_ad_fsmi_title -->
137
+ <div class="acx_ad_fsmi_desc acx_ad_fsmi_desc2" style="padding-top: 4px; height: 41px; font-size: 13px; text-align: center;">Create, modify, or customise, themes</div> <!-- acx_ad_fsmi_desc -->
138
+ </a> <!-- acx_ad_fsmi_1 -->
139
+
140
+ <a href="http://www.acurax.com/services/web-development.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" class="acx_ad_fsmi_1">
141
+ <div class="acx_ad_fsmi_title">Plugin Development</div> <!-- acx_ad_fsmi_title -->
142
+ <div class="acx_ad_fsmi_desc acx_ad_fsmi_desc3" style="padding-top: 4px; height: 41px; font-size: 13px; text-align: center;">Custom plugin development according to your needs</div> <!-- acx_ad_fsmi_desc -->
143
+ </a> <!-- acx_ad_fsmi_1 -->
144
+
145
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=fsmi" target="_blank" class="acx_ad_fsmi_1">
146
+ <div class="acx_ad_fsmi_title">Quick Support</div> <!-- acx_ad_fsmi_title -->
147
+ <div class="acx_ad_fsmi_desc acx_ad_fsmi_desc4" style="padding-top: 4px; height: 41px; font-size: 13px; text-align: center;">Explain errors and recommend solutions</div> <!-- acx_ad_fsmi_desc -->
148
+ </a> <!-- acx_ad_fsmi_1 -->
149
+ </div> <!-- acx_ad_banners_fsmi -->
150
  <?php } else { ?>
151
  <p class="widefat" style="padding:8px;width:99%;">
152
  <b>Acurax Services >> </b>
153
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=fsmi" target="_blank">Wordpress Expert Support</a> |
154
+ <a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=fsmi" target="_blank">Custom Theme Design</a> |
155
+ <a href="http://www.acurax.com/services/web-development.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=fsmi" target="_blank">Plugin Development</a> |
156
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=fsmi" target="_blank">Quick Support</a>
 
157
  </p>
158
  <?php } ?>
159
  <?php
161
  {
162
  ?>
163
  <div id="acx_fsmi_premium">
164
+ <a style="margin: 8px 0px 0px 10px; float: left; font-size: 16px; font-weight: bold;" href="http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/?utm_source=plugin&utm_medium=highlight&utm_campaign=fsmi" target="_blank">Fully Featured - Premium Floating Social Media Icon</a>
165
  <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>
166
  </div> <!-- acx_fsmi_premium -->
167
  <?php } ?>
388
  <?php
389
  } ?>
390
  <p class="submit">
391
+ <input type="submit" name="Submit" class="button" value="<?php _e('Save Configuration', 'acx_si_config' ) ?>" />
392
  <a name="updated">.</a>
393
  </p>
394
  </form>
395
  <?php if($_GET["status"] == "updated") { ?>
396
  <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 Floating Social Media Icon Update Successfully Completed - Thank You</div>
397
  <?php
398
+ $acx_fsmi_si_current_version = "1.3.5"; // Current Version
399
  update_option('acx_fsmi_si_current_version', $acx_fsmi_si_current_version);
400
  } ?>
401
  <hr/>
409
  <p class="widefat" style="padding:8px;width:99%;">
410
  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>
411
  </p>
412
+ </div></div>
style_admin.css CHANGED
@@ -1,3 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #icon_selection
2
  {
3
  background: none repeat scroll 0 0 white;
@@ -36,7 +58,7 @@
36
  margin-bottom: 8px;
37
  margin-left: 7px;
38
  padding: 2px;
39
- width: 365px;
40
  }
41
  #acx_si_theme_display .acx_si_single_label
42
  {
@@ -62,7 +84,6 @@ float:left;
62
  }
63
  #acx_help_page h3
64
  {
65
- border-bottom: 1px solid gray;
66
  color: SeaGreen;
67
  font-family: arial;
68
  font-size: 18px;
@@ -119,74 +140,6 @@ font-weight:normal;
119
  padding: 5px;
120
  text-align: center;
121
  }
122
- #contentRight {
123
-
124
- }
125
- #comparison
126
- {
127
- border: 1px solid gray;
128
- border-radius: 5px 5px 5px 5px;
129
- display: inline-block;
130
- font-family: arial;
131
- font-size: 13px;
132
- overflow: hidden;
133
- width: 600px;
134
- }
135
- #c_left
136
- {
137
- border-right: 1px solid gray;
138
- float: left;
139
- padding: 1%;
140
- width: 47%;
141
- }
142
- #c_right
143
- {
144
- float: left;
145
- padding: 1%;
146
- width: 48%;
147
- }
148
- #comparison .title
149
- {
150
- background: none repeat scroll 0 0 Teal;
151
- color: white;
152
- font-family: arial;
153
- font-size: 18px;
154
- text-align: center !important;
155
- }
156
- #comparison .feature_free
157
- {
158
- width: 150px;
159
- }
160
- #comparison .feature_paid
161
- {
162
- width: 150px;
163
- }
164
- #comparison .label
165
- {
166
- width: 266px;
167
- }
168
- #comparison td
169
- {
170
- border-right: 1px solid;
171
- padding: 5px;
172
- }
173
- #comparison tr
174
- {
175
- border-bottom: 1px dashed lightgray !important;
176
- display: block;
177
- }
178
- #c_tick
179
- {
180
- background: url("images/check_mark.png") no-repeat scroll center center transparent;
181
- height: 29px;
182
- width: 97%;
183
- }
184
- #c_cross
185
- {
186
- background: url("images/cross_mark.png") no-repeat scroll center center transparent;
187
- height: 29px;
188
- width: 97%;
189
- }
190
  #wtd
191
  {
192
  background: url("images/wtd.jpg") repeat scroll 0 0 transparent;
@@ -259,20 +212,22 @@ font-weight:normal;
259
  }
260
  #ad_fsmi_2_button_order
261
  {
262
- background: url("images/button.jpg") repeat scroll 0 0 transparent;
263
- display: block;
264
- height: 115px;
265
- margin-left: auto;
266
- margin-right: auto;
267
- width: 283px;
268
- cursor: pointer;
269
  }
270
  #ad_fsmi_2_button_order_link
271
  {
272
- display: block;
273
- height: 115px;
274
- width: 283px;
275
- cursor: pointer;
 
 
276
  }
277
  #ad_fsmi_2_button_payments
278
  {
@@ -303,6 +258,7 @@ font-weight:normal;
303
  {
304
  font-family: sans-serif;
305
  font-size: 21px;
 
306
  }
307
  #acx_backlink
308
  {
@@ -313,170 +269,217 @@ font-weight:normal;
313
  padding: 0 5px;
314
  margin-bottom:6px;
315
  }
316
- /* Comparison */
317
- #fsmi_landing_holder
318
  {
319
- margin-left: auto;
320
- margin-right: auto;
321
- margin-top: 10px;
322
- margin-bottom: 10px;
323
- width: 1006px;
324
  }
325
- #fsmi_lp_compare .highlighted
326
  {
327
- background: none repeat scroll 0 0 azure;
328
- font-weight: bold;
 
 
 
 
 
329
  }
330
- #float_left_100
331
  {
332
- width:100%;
333
- float:left;
 
 
 
 
 
334
  }
335
- #fsmi_lp_compare
336
  {
337
- border: 1px solid black;
338
- border-radius: 8px 8px 0 0;
339
- float: left;
340
- margin-left: 40px;
341
- margin-top: 25px;
342
- overflow: hidden;
343
- width: 923px;
344
  }
345
- #fsmi_lp_compare .row_1
346
  {
347
- float: left;
348
- width: 529px;
 
349
  }
350
- #fsmi_lp_compare .row_2
351
  {
352
- float: left;
353
- width:192px;
 
 
 
 
354
  }
355
- #fsmi_lp_compare .row_3
356
  {
 
357
  float: left;
358
- width: 202px;
 
359
  }
360
- #fsmi_lp_compare .fsmi_lp_compare_row_1_1
361
- {
362
- background-image: url("images/fsmi_lp_sprite.png");
363
- background-position: -10px -710px;
364
- border-bottom: 1px solid black;
365
- height: 152px;
366
- width: 529px;
367
  }
368
- #fsmi_lp_compare .fsmi_lp_compare_row_1_features
369
  {
370
- border-bottom: 1px solid lightgray;
371
- color: #414147;
372
- float: left;
373
  font-family: arial;
374
- font-size: 13px;
375
- height: 16px;
376
- padding: 8px;
377
- width: 319px;
378
  }
379
- #fsmi_lp_compare .fsmi_lp_compare_row_2_1
380
  {
381
- background-image: url("images/fsmi_lp_sprite.png");
382
- background-position: -10px -882px;
383
- float: left;
384
- height: 42px;
385
- width: 192px;
386
  }
387
- #fsmi_lp_compare .fsmi_lp_compare_row_2_2
388
  {
389
- background-image: url("images/fsmi_lp_sprite.png");
390
- background-position: -10px -944px;
391
- float: left;
392
- height: 111px;
393
- width: 191px;
394
  }
395
- #fsmi_lp_compare .row_2_border
396
  {
397
- border-left: 1px solid black;
398
- float: left;
399
- width: 192px;
400
- min-height: 1562px;
 
 
401
  }
402
- #fsmi_lp_compare .fsmi_lp_compare_row_3_1
403
  {
404
- background-image: url("images/fsmi_lp_sprite.png");
405
- background-position: -10px -1075px;
406
- float: left;
407
- height: 17px;
408
- width: 202px;
409
  }
410
- #fsmi_lp_compare .row_3_shadow
411
  {
412
- border-left: 1px solid black;
413
- border-top: 1px solid black;
414
- box-shadow: -2px -2px 10px -2px black;
415
- float: left;
416
- width: 201px;
417
- min-height: 1586px;
418
  }
419
- #fsmi_lp_compare .fsmi_lp_compare_row_3_2
420
  {
421
- background-image: url("images/fsmi_lp_sprite.png");
422
- background-position: -10px -1113px;
423
- float: left;
424
- height: 135px;
425
- width: 201px;
426
  }
427
- #fsmi_lp_compare .y
428
  {
429
- background-color: #f3fdee;
430
- background-image: url("images/fsmi_lp_sprite.png");
431
- background-position: 75.4333px -1323px;
432
- border-bottom: 1px solid lightgray;
433
  float: left;
434
- height: 32px;
435
- width: 100%;
436
  }
437
- #fsmi_lp_compare .n
438
  {
439
- background-color: #FEF1F3;
440
- background-image: url("images/fsmi_lp_sprite.png");
441
- background-position: 74.9667px -1287px;
442
- border-bottom: 1px solid lightgray;
443
- float: left;
444
- height: 32px;
445
- width: 100%;
 
446
  }
447
- #fsmi_lp_shadow
448
  {
449
- background-image: url("images/fsmi_lp_sprite.png");
450
- background-position: 123.5px -667px;
451
- background-repeat: no-repeat;
452
- float: left;
453
- height: 24px;
454
- width: 100%;
455
- opacity: 0.7;
456
  }
457
- #fsmi_lp_f_group
458
  {
459
- float: left;
460
- width: 529px;
 
 
 
 
 
 
 
 
461
  }
462
- #fsmi_lp_f_group .left
463
  {
464
- border-bottom: 1px solid lightgray;
465
- border-right: 1px solid lightgray;
466
- color: #414147;
467
- float: left;
468
  font-family: arial;
469
- font-size: 14px;
470
- font-weight: bold;
471
- padding-left: 10px;
472
- width: 183px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
473
  }
474
- #fsmi_lp_f_group .right
475
  {
476
  float: left;
477
- width: 335px;
 
 
478
  }
479
- /* Comparison Ends Here */
 
 
 
 
 
480
  #acx_td p .button
481
  {
482
  border: 1px solid lightgray;
@@ -487,4 +490,146 @@ float:left;
487
  #acx_td p .button:hover
488
  {
489
  background: azure;
490
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @font-face {
2
+ font-family: 'agency_fbbold';
3
+ src: url('images/fonts/agencyb-webfont.eot');
4
+ src: url('images/fonts/agencyb-webfont.eot?#iefix') format('embedded-opentype'),
5
+ url('images/fonts/agencyb-webfont.woff') format('woff'),
6
+ url('images/fonts/agencyb-webfont.ttf') format('truetype'),
7
+ url('images/fonts/agencyb-webfont.svg#agency_fbbold') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+ @font-face {
12
+ font-family: 'Raleway';
13
+ font-style: normal;
14
+ font-weight: 400;
15
+ src: url('images/fonts/raleway.woff') format('woff');
16
+ }
17
+ @font-face {
18
+ font-family: 'Courgette';
19
+ font-style: normal;
20
+ font-weight: 400;
21
+ src: url('images/fonts/courgette.woff') format('woff');
22
+ }
23
  #icon_selection
24
  {
25
  background: none repeat scroll 0 0 white;
58
  margin-bottom: 8px;
59
  margin-left: 7px;
60
  padding: 2px;
61
+ width: 355px;
62
  }
63
  #acx_si_theme_display .acx_si_single_label
64
  {
84
  }
85
  #acx_help_page h3
86
  {
 
87
  color: SeaGreen;
88
  font-family: arial;
89
  font-size: 18px;
140
  padding: 5px;
141
  text-align: center;
142
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  #wtd
144
  {
145
  background: url("images/wtd.jpg") repeat scroll 0 0 transparent;
212
  }
213
  #ad_fsmi_2_button_order
214
  {
215
+ background: url("images/button.jpg") no-repeat scroll center 0 #FFFFFF;
216
+ cursor: pointer;
217
+ display: block;
218
+ height: 115px;
219
+ margin-left: auto;
220
+ margin-right: auto;
221
+ width: 283px;
222
  }
223
  #ad_fsmi_2_button_order_link
224
  {
225
+ cursor: pointer;
226
+ display: block;
227
+ height: 115px;
228
+ margin-left: auto;
229
+ margin-right: auto;
230
+ width: 283px;
231
  }
232
  #ad_fsmi_2_button_payments
233
  {
258
  {
259
  font-family: sans-serif;
260
  font-size: 21px;
261
+ text-decoration:none;
262
  }
263
  #acx_backlink
264
  {
269
  padding: 0 5px;
270
  margin-bottom:6px;
271
  }
272
+ /* Comparison 2014 Starts Here */
273
+ #ss_middle_wrapper
274
  {
275
+ background: none repeat scroll 0 0 #D5D5D5;
276
+ border-top: 1px solid #29A2DF;
277
+ min-height: 500px;
278
+ width: 100%;
 
279
  }
280
+ #ss_middle_wrapper h2
281
  {
282
+ color: #000000;
283
+ font-family: 'agency_fbbold';
284
+ font-size: 52px;
285
+ font-weight: normal;
286
+ margin: 0;
287
+ line-height: 1;
288
+ text-transform: uppercase;
289
  }
290
+ #ss_middle_wrapper h3
291
  {
292
+ line-height: 1;
293
+ color: #29a2df;
294
+ font-family: 'agency_fbbold';
295
+ font-size: 26px;
296
+ font-weight: normal;
297
+ margin: 0;
298
+ text-transform: uppercase;
299
  }
300
+ #ss_middle_center
301
  {
302
+ background: #ececec;
303
+ margin: 0 auto;
304
+ width: 1006px;
 
 
 
 
305
  }
306
+ #ss_middle_inline_block
307
  {
308
+ display: inline-block;
309
+ padding: 33px;
310
+ width: 940px;
311
  }
312
+ .middle_h2_1
313
  {
314
+ background: url("images/girl.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
315
+ height: 149px;
316
+ padding-left: 154px;
317
+ padding-top: 53px;
318
+ width: 786px;
319
+ float: left;
320
  }
321
+ #ss_features_table
322
  {
323
+ background: url("images/ss_table_footer.png") no-repeat scroll center bottom rgba(0, 0, 0, 0);
324
  float: left;
325
+ margin: -62px 0 0;
326
+ width: 940px;
327
  }
328
+ #ss_table_header
329
+ {
330
+ width: 940px;
331
+ float: left;
332
+ height: 118px;
 
 
333
  }
334
+ #ss_table_header h3
335
  {
336
+ color: #FFFFFF;
 
 
337
  font-family: arial;
338
+ font-size: 14px;
339
+ font-weight: bolder;
340
+ line-height: 1;
341
+ text-align: center;
342
  }
343
+ .tb_h1
344
  {
345
+ background: url("images/table_head_1.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
346
+ padding: 21px 0;
347
+ width: 178px;
348
+ float: left;
349
+ margin: 62px 0 0;
350
  }
351
+ .tb_h2
352
  {
353
+ background: url("images/table_head_2.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
354
+ padding: 21px 0;
355
+ width: 340px;
356
+ float: left;
357
+ margin: 62px 0 0;
358
  }
359
+ .tb_h3
360
  {
361
+ background: url("images/table_head_3.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
362
+ width: 211px;
363
+ height: 88px;
364
+ float: left;
365
+ margin: 30px 0 0;
366
+ position: relative;
367
  }
368
+ .ss_download
369
  {
370
+ height: 32px;
371
+ left: 94px;
372
+ position: absolute;
373
+ top: 44px;
374
+ width: 102px;
375
  }
376
+ .tb_h4
377
  {
378
+ background: url("images/table_head_4.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
379
+ width: 211px;
380
+ height: 118px;
381
+ float: left;
382
+ position: relative;
 
383
  }
384
+ .ss_buy_now
385
  {
386
+ height: 65px;
387
+ left: 2px;
388
+ position: absolute;
389
+ top: 51px;
390
+ width: 207px;
391
  }
392
+ .ss_column_holder
393
  {
394
+ background: none repeat scroll 0 0 #FFFFFF;
395
+ border-bottom: 1px solid #E6E6E6;
 
 
396
  float: left;
397
+ width: 940px;
 
398
  }
399
+ .ss_feature_group
400
  {
401
+ color: #33a9e1;
402
+ font-family: arial;
403
+ font-size: 14px;
404
+ font-weight: bolder;
405
+ line-height: 1;
406
+ text-align: center;
407
+ float: left;
408
+ width: 176px;
409
  }
410
+ .ss_features
411
  {
412
+ border-left: 1px solid #E6E6E6;
413
+ color: #737373;
414
+ font-family: arial;
415
+ font-size: 12px;
416
+ line-height: 1;
417
+ float: left;
 
418
  }
419
+ .ss_features ul
420
  {
421
+ margin: 0;
422
+ padding: 0;
423
+ }
424
+ .ss_features ul li
425
+ {
426
+ border-bottom: 1px solid #E6E6E6;
427
+ list-style: none outside none;
428
+ padding: 13px;
429
+ width: 315px;
430
+ margin-bottom: 0;
431
  }
432
+ .ss_features ul li a
433
  {
434
+ color: #29A2DF;
435
+ float: right;
 
 
436
  font-family: arial;
437
+ font-size: 12px;
438
+ font-weight: normal;
439
+ text-decoration: none;
440
+ transition: all 0.3s ease 0s;
441
+ }
442
+ .ss_features ul li a:hover
443
+ {
444
+ color: #006496;
445
+ }
446
+ .ss_last_one
447
+ {
448
+ border: 0 none !important;
449
+ }
450
+ .ss_y_n_holder
451
+ {
452
+ border-left: 1px solid #E6E6E6;
453
+ float: left;
454
+ width: 210px;
455
+ }
456
+ .ss_yes
457
+ {
458
+ background: url("images/ss_yes.png") no-repeat scroll center center rgba(0, 0, 0, 0);
459
+ border-bottom: 1px solid #E6E6E6;
460
+ height: 38px;
461
+ width: 210px;
462
+ }
463
+ .ss_no
464
+ {
465
+ background: url("images/ss_no.png") no-repeat scroll center center rgba(0, 0, 0, 0);
466
+ border-bottom: 1px solid #E6E6E6;
467
+ height: 38px;
468
+ width: 210px;
469
  }
470
+ .order_now
471
  {
472
  float: left;
473
+ height: 105px;
474
+ margin: 28px 0 19px 323px;
475
+ width: 310px;
476
  }
477
+ .ss_column_holder .mini
478
+ {
479
+ display:none;
480
+ }
481
+
482
+ /* Comparison 2014 Ends Here */
483
  #acx_td p .button
484
  {
485
  border: 1px solid lightgray;
490
  #acx_td p .button:hover
491
  {
492
  background: azure;
493
+ }
494
+ #acx_trouble_ul
495
+ {
496
+ display: inline-block;
497
+ list-style: none outside none;
498
+ width: 100%;
499
+ }
500
+ #acx_trouble_ul li
501
+ {
502
+ background: url("images/tag.png") no-repeat scroll 6px center #F8F8FF;
503
+ border: 1px dashed #808080;
504
+ color: #006400;
505
+ float: left;
506
+ font-size: 13px;
507
+ list-style: none outside none;
508
+ margin-left: 2px;
509
+ margin-right: 2px;
510
+ padding: 5px;
511
+ text-indent: 24px;
512
+ text-transform: capitalize;
513
+ }
514
+ #acx_trouble_ul li a
515
+ {
516
+ text-decoration:none !important;
517
+ color:#006400;
518
+ }
519
+ .acx_trouble_fixit
520
+ {
521
+ background: url("images/fix.png") no-repeat scroll 5px center #F0FFF0;
522
+ border-bottom: 1px solid #D3D3D3;
523
+ border-radius: 5px;
524
+ border-right: 1px solid #D3D3D3;
525
+ margin-left: 10px;
526
+ padding: 4px 10px 4px 28px;
527
+ }
528
+ /* Starting CSS for Quick Request Form */
529
+ #acx_quick_request_form
530
+ {
531
+ background: none repeat scroll 0 0 #AFEEEE;
532
+ border-radius: 5px;
533
+ border-top: 3px solid #6495ED;
534
+ height: 390px;
535
+ margin-left: auto;
536
+ margin-right: auto;
537
+ padding: 10px;
538
+ width: 350px;
539
+ }
540
+ #acx_quick_request_form input
541
+ {
542
+ border: 1px solid #20B2AA;
543
+ width: 245px;
544
+ }
545
+ #acx_quick_request_form textarea
546
+ {
547
+ border: 1px solid #20B2AA;
548
+ width: 245px;
549
+ height:100px;
550
+ }
551
+ #acx_quick_request_form .acx_qr_label
552
+ {
553
+ float: left;
554
+ font-family: arial;
555
+ min-width: 90px;
556
+ padding-right: 10px;
557
+ padding-top: 6px;
558
+ margin-bottom:5px;
559
+ }
560
+ #acx_quick_request_form .acx_qr_field
561
+ {
562
+ float: left;
563
+ margin-bottom:5px;
564
+ }
565
+ #acx_quick_request_form span
566
+ {
567
+ color:red;
568
+ }
569
+ #acx_quick_request_form h2
570
+ {
571
+ font-family: arial;
572
+ font-size: 20px;
573
+ line-height: 28px;
574
+ margin: 0 0 14px;
575
+ text-align: center;
576
+ text-transform: capitalize;
577
+ }
578
+ /* Ending CSS for Quick Request Form */
579
+ /* Starting Ad Banner Code */
580
+ #acx_ad_banners_fsmi
581
+ {
582
+ height: 80px;
583
+ margin-top: 10px;
584
+ width: 100%;
585
+ }
586
+ #acx_ad_banners_fsmi .acx_ad_fsmi_1
587
+ {
588
+ border: 1px solid #E6E6FA;
589
+ border-radius: 7px;
590
+ float: left;
591
+ margin-left: 8px;
592
+ overflow: hidden;
593
+ width: 260px;
594
+ height:auto;
595
+ display:block;
596
+ }
597
+ #acx_ad_banners_fsmi .acx_ad_fsmi_title
598
+ {
599
+ background: none repeat scroll 0 0 inactivecaptiontext;
600
+ border-bottom: 1px dashed #D3D3D3;
601
+ color: #FFFFFF;
602
+ float: left;
603
+ font-family: 'Raleway',sans-serif;
604
+ font-size: 16px;
605
+ font-weight: normal;
606
+ opacity: 0.8;
607
+ padding-bottom: 6px;
608
+ padding-top: 6px;
609
+ text-align: center;
610
+ width: 100%;
611
+ }
612
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc
613
+ {
614
+ background: url("images/wp.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
615
+ float: left;
616
+ font-family: Courgette;
617
+ height: 31px;
618
+ padding-left: 42px;
619
+ padding-top: 12px;
620
+ text-transform: capitalize;
621
+ width: 213px;
622
+ }
623
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc2
624
+ {
625
+ background: url("images/des.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
626
+ }
627
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc3
628
+ {
629
+ background: url("images/plug.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
630
+ }
631
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc4
632
+ {
633
+ background: url("images/quick.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
634
+ }
635
+ /* Ending Ad Banner Code */
troubleshoot.php ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $quick_fix = ISSET($_GET['quickfix']);
3
+ $fix_applied = 0;
4
+ if($quick_fix != '')
5
+ {
6
+ if($quick_fix == 1)
7
+ {
8
+ $social_icon_array_order = array(0,1,2,3,4,5,6); // Number Of Services
9
+ $social_icon_array_order = serialize($social_icon_array_order);
10
+ update_option('social_icon_array_order', $social_icon_array_order);
11
+ $fix_applied = 1;
12
+ }
13
+ }
14
+ $acx_installation_domain = $_SERVER['HTTP_HOST'];
15
+ $acx_installation_domain = str_replace("www.","",$acx_installation_domain);
16
+ $acx_installation_domain = str_replace(".","_",$acx_installation_domain);
17
+ if($acx_installation_domain == "") { $acx_installation_domain = "not_defined";}
18
+
19
+ if($_GET['page'] == "Acurax-Social-Icons-Expert-Support")
20
+ {
21
+ $acx_page_loaded = "_es";
22
+ } else
23
+ {
24
+ $acx_page_loaded = "";
25
+ }
26
+
27
+
28
+ echo "<div style='background: none repeat scroll 0% 0% white; height: 100%; display: inline-block; padding: 15px; width: 95%; margin-top: 15px; border-radius: 15px; min-height: 450px;'>";
29
+
30
+ if($fix_applied == 1)
31
+ {
32
+ echo "<div style='background: none repeat scroll 0% 0% lightgreen; width: 300px; text-align: center; margin-right: auto; margin-left: auto; padding: 7px 7px 5px; border-top-right-radius: 7px; border-top-left-radius: 7px; border-bottom: 2px solid green;'>Action Completed Successfully</div>";
33
+ }
34
+
35
+ echo "<h3 style='font-size: 20px; text-align: center; text-transform: capitalize; color: rgb(16, 177, 225);'>Do you need technical support services to get the best out of your WordPress site? </h3>";
36
+ echo "<p style='text-align:center;'><a href='http://www.acurax.com/services.php?utm_source=fsmi&utm_medium=link&utm_campaign=trble" . $acx_page_loaded . "&ref=" . $acx_installation_domain . "' target='_blank'>Acurax</a> offer a number of WordPress related services: From installing WordPress on your domain to offering support for existing WordPress sites.</p>";
37
+ echo "<ul id='acx_trouble_ul'><li><a href='http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=fsmi&utm_medium=link&utm_campaign=trble" . $acx_page_loaded . "&ref=" . $acx_installation_domain . "' target='_blank'>Troubleshoot WordPress site issues</a></li><li><a href='http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=fsmi&utm_medium=link&utm_campaign=trble" . $acx_page_loaded . "&ref=" . $acx_installation_domain . "' target='_blank'>Recommend & install plugins for improved WordPress performance</a></li><li><a href='http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=fsmi&utm_medium=link&utm_campaign=trble" . $acx_page_loaded . "&ref=" . $acx_installation_domain . "' target='_blank'>Create, modify, or customise, themes</a></li><li><a href='http://www.acurax.com/services/web-designing.php?utm_source=fsmi&utm_medium=link&utm_campaign=trble" . $acx_page_loaded . "&ref=" . $acx_installation_domain . "' target='_blank'>Explain errors and recommend solutions</a></li><li><a href='http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=fsmi&utm_medium=link&utm_campaign=trble" . $acx_page_loaded . "&ref=" . $acx_installation_domain . "' target='_blank'>Custom plugin development according to your needs</a></li><li><a href='http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=fsmi&utm_medium=link&utm_campaign=trble" . $acx_page_loaded . "&ref=" . $acx_installation_domain . "' target='_blank'>Plugin Integration Support</a></li><li><a href='http://www.acurax.com/services.php?utm_source=fsmi&utm_medium=link&utm_campaign=trble" . $acx_page_loaded . "&ref=" . $acx_installation_domain . "' target='_blank'>Many more...</a></li></ul>";
38
+ echo "<p style='text-align: center; text-transform: capitalize; margin-top: 0px;'> We have extensive experience in WordPress troubleshooting, theme design & plugin development</p><hr />";
39
+ if($_GET['page'] == "Acurax-Social-Icons-Expert-Support")
40
+ {
41
+ $acx_installation_url = $_SERVER['HTTP_HOST'];
42
+ echo "<div id='acx_quick_request_form'>";
43
+ echo "<h2>We are dedicated to help you <br /> Submit Your Request Now!</h2>";
44
+ echo "<div class='acx_qr_label'>Name: <span>*</span></div><div class='acx_qr_field'><input type='input' name='acx_name' id='acx_name'></div>";
45
+ echo "<div class='acx_qr_label'>Email: <span>*</span></div><div class='acx_qr_field'><input type='input' name='acx_email' id='acx_email'></div>";
46
+ echo "<div class='acx_qr_label'>Phone: </div><div class='acx_qr_field'><input type='input' name='acx_phone' id='acx_phone'></div>";
47
+ echo "<div class='acx_qr_label'>Website URL: <span>*</span></div><div class='acx_qr_field'><input readonly type='input' name='acx_weburl' id='acx_weburl' value='" . $acx_installation_url . "'></div>";
48
+ echo "<div class='acx_qr_label'>Subject: <span>*</span></div><div class='acx_qr_field'><input type='input' name='acx_subject' id='acx_subject'></div>";
49
+ echo "<div class='acx_qr_label'>Question: <span>*</span></div><div class='acx_qr_field'><textarea name='acx_question' id='acx_question'></textarea></div>";
50
+ echo "<div class='acx_qr_label'></div><div class='acx_qr_field' style='width: 245px;'><div class='button' style='float:right;' onclick='acx_quick_request_submit();'>Submit Request</div></div>";
51
+ echo "</div>";
52
+ echo "<br /><br /><br /><br /><div style='font-size:12px;'>Its our pleasure to thank you for using our plugin and being with us, We always do our best to help you on your needs.If you like to hide this menu, you can do so at <a href='admin.php?page=Acurax-Social-Icons-Misc'>Misc</a> page which is under our plugin options.</div>";
53
+ ?>
54
+ <script type="text/javascript">
55
+ var request_acx_form_status = 0;
56
+ function acx_quick_form_reset()
57
+ {
58
+ jQuery("#acx_subject").val('');
59
+ jQuery("#acx_question").val('');
60
+ }
61
+ acx_quick_form_reset();
62
+ function acx_quick_request_submit()
63
+ {
64
+ var acx_name = jQuery("#acx_name").val();
65
+ var acx_email = jQuery("#acx_email").val();
66
+ var acx_phone = jQuery("#acx_phone").val();
67
+ var acx_weburl = jQuery("#acx_weburl").val();
68
+ var acx_subject = jQuery("#acx_subject").val();
69
+ var acx_question = jQuery("#acx_question").val();
70
+ var order = '&action=acx_quick_request_submit&acx_name='+acx_name+'&acx_email='+acx_email+'&acx_phone='+acx_phone+'&acx_weburl='+acx_weburl+'&acx_subject='+acx_subject+'&acx_question='+acx_question;
71
+ if(request_acx_form_status == 0)
72
+ {
73
+ request_acx_form_status = 1;
74
+ jQuery.post(ajaxurl, order, function(quick_request_acx_response)
75
+ {
76
+ if(quick_request_acx_response == 1)
77
+ {
78
+ alert('Your Request Submitted Successfully!');
79
+ acx_quick_form_reset();
80
+ request_acx_form_status = 0;
81
+ } else if(quick_request_acx_response == 2)
82
+ {
83
+ alert('Please Fill Mandatory Fields.');
84
+ request_acx_form_status = 0;
85
+ } else
86
+ {
87
+ alert('There was an error processing the request, Please try again.');
88
+ acx_quick_form_reset();
89
+ request_acx_form_status = 0;
90
+ }
91
+ });
92
+ } else
93
+ {
94
+ alert('A request is already in progress.');
95
+ }
96
+ }
97
+ </script>
98
+ <?php
99
+ } else
100
+ {
101
+ echo "<h2>Floating Social Media Icon Troubleshooting</h2>"; ?>
102
+ <p style="font-weight:bold;text-align:center;color:darkred;">IMPORTANT NOTE: Please do troubleshooting only if you got instructions from support or know what you are going to do.</p>
103
+
104
+ <p class="widefat" style="background: none repeat scroll 0% 0% menu; border-bottom: 2px dashed lavender; border-right: 2px dashed lavender; margin-bottom: 15px; margin-top: 8px; padding: 8px; width: 99%;"> <?php _e("1) Icon Selection Display Fix: " ); ?>
105
+ <?php _e("If you cant find any icons on the icon theme/style selection section, try this fix" ); ?>
106
+ <a href="admin.php?page=Acurax-Social-Icons-Troubleshooter&quickfix=1" class="acx_trouble_fixit">Click here to try this fix!</a>
107
+ </p>
108
+
109
+
110
+ <p style="text-align:center;">We will be adding more troubleshooting quick fix options according to requests</p>
111
+
112
+ <?php
113
+ }
114
+ echo "</div>";
115
+ ?>