Social Media Widget by Acurax - Version 2.0

Version Description

  • June 07, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
  • Stable Release
  • Optimized Codes
  • Added Troubleshoot Menu
  • Configuration Style Improvements
Download this release

Release Info

Developer Acurax
Plugin Icon 128x128 Social Media Widget by Acurax
Version 2.0
Comparing to
See all releases

Code changes from version 1.3.3 to 2.0

acurax-social-icon.php CHANGED
@@ -1,10 +1,10 @@
1
  <?php
2
  /*
3
- Plugin Name: Acurax Social Media Widget
4
  Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
5
  Description: A Simple Wordpress Plugin Which Allow You To Add Widget Which Links Social Media Icons to Your Social Media Profiles Twitter,Facebook,Pinterest,Youtube,Rss Feed,Linkedin,google plus. You can define icon style size for each widget.
6
  Author: Acurax
7
- Version: 1.3.3
8
  Author URI: http://www.acurax.com
9
  License: GPLv2 or later
10
  */
@@ -35,15 +35,17 @@ function enqueue_acx_social_widget_icon_script()
35
  function Acurax_Widget_Links($links, $file) {
36
  $plugin = plugin_basename(__FILE__);
37
  // create link
 
 
 
 
38
  if ($file == $plugin) {
39
 
40
  return array_merge( $links, array(
41
- '<div id="plugin_page_links">',
42
- '<a href="https://twitter.com/#!/acuraxdotcom" target="_blank">' . __('Follow us on Twitter') . '</a>',
43
- '<a href="http://www.facebook.com/AcuraxInternational" target="_blank">' . __('Like us on Facebook') . '</a>',
44
- '<a href="http://www.acurax.com/services/web-designing.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page" target="_blank">' . __('Need Your Website Redesigned?') . '</a>',
45
- '<a href="http://www.acurax.com/services/blog-design.php?utm_source=wp&utm_medium=link&utm_campaign=plugin-page" target="_blank">' . __('Need a Custom Blog Design?') . '</a>',
46
- '<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>'
47
  ));
48
  }
49
  return $links;
@@ -63,18 +65,28 @@ function acx_social_widget_icon_premium()
63
  {
64
  include('premium.php');
65
  }
 
 
 
 
66
  function acx_social_widget_icon_misc()
67
  {
68
  include('smw-misc.php');
69
  }
 
 
70
  function acx_social_widget_icon_admin_actions()
71
  {
72
- add_menu_page( 'Acx Social Media Widget Configuration', 'Acx Social Media Widget Settings', 8, 'Acurax-Social-Widget-Settings','acx_social_widget_icon_admin',plugin_dir_url( __FILE__ ).'/images/acurax_international.png' ); // 8 for admin
 
73
 
74
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Icon Premium', 'Premium', 8, 'Acurax-Social-Widget-Premium' ,'acx_social_widget_icon_premium');
75
 
76
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Icon Misc Settings', 'Misc', 8, 'Acurax-Social-Widget-Misc' ,'acx_social_widget_icon_misc');
77
-
 
 
 
78
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Widget Help and Support', 'Help', 8, 'Acurax-Social-Widget-Help' ,'acx_social_widget_icon_help');
79
  }
80
 
1
  <?php
2
  /*
3
+ Plugin Name: Social Media Widget by Acurax
4
  Plugin URI: http://www.acurax.com/products/floating-social-media-icon-plugin-wordpress/
5
  Description: A Simple Wordpress Plugin Which Allow You To Add Widget Which Links Social Media Icons to Your Social Media Profiles Twitter,Facebook,Pinterest,Youtube,Rss Feed,Linkedin,google plus. You can define icon style size for each widget.
6
  Author: Acurax
7
+ Version: 2.0
8
  Author URI: http://www.acurax.com
9
  License: GPLv2 or later
10
  */
35
  function Acurax_Widget_Links($links, $file) {
36
  $plugin = plugin_basename(__FILE__);
37
  // create link
38
+ $acx_installation_domain = $_SERVER['HTTP_HOST'];
39
+ $acx_installation_domain = str_replace("www.","",$acx_installation_domain);
40
+ $acx_installation_domain = str_replace(".","_",$acx_installation_domain);
41
+ if($acx_installation_domain == "") { $acx_installation_domain = "not_defined";}
42
  if ($file == $plugin) {
43
 
44
  return array_merge( $links, array(
45
+ '<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>',
46
+ '<a href="https://twitter.com/#!/acuraxdotcom" target="_blank">' . __('Acurax on Twitter') . '</a>',
47
+ '<a href="http://www.facebook.com/AcuraxInternational" target="_blank">' . __('Acurax on Facebook') . '</a>',
48
+ '<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>'
 
 
49
  ));
50
  }
51
  return $links;
65
  {
66
  include('premium.php');
67
  }
68
+ function acx_social_widget_troubleshoot()
69
+ {
70
+ include('troubleshoot.php');
71
+ }
72
  function acx_social_widget_icon_misc()
73
  {
74
  include('smw-misc.php');
75
  }
76
+ $acx_si_smw_hide_expert_support_menu = get_option('acx_si_smw_hide_expert_support_menu');
77
+ if ($acx_si_smw_hide_expert_support_menu == "") { $acx_si_smw_hide_expert_support_menu = "no"; }
78
  function acx_social_widget_icon_admin_actions()
79
  {
80
+ global $acx_si_smw_hide_expert_support_menu;
81
+ add_menu_page( 'Acurax Social Media Widget Configuration', 'Social Media Widget Settings', 8, 'Acurax-Social-Widget-Settings','acx_social_widget_icon_admin',plugin_dir_url( __FILE__ ).'/images/acurax_international.png' ); // 8 for admin
82
 
83
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Icon Premium', 'Premium', 8, 'Acurax-Social-Widget-Premium' ,'acx_social_widget_icon_premium');
84
 
85
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Icon Misc Settings', 'Misc', 8, 'Acurax-Social-Widget-Misc' ,'acx_social_widget_icon_misc');
86
+ add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Troubleshooter', 'Troubleshoot', 8, 'Acurax-Social-Widget-Troubleshooter' ,'acx_social_widget_troubleshoot');
87
+ if($acx_si_smw_hide_expert_support_menu == "no") {
88
+ add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Expert Support', 'Expert Support', 8, 'Acurax-Social-Widget-Expert-Support' ,'acx_social_widget_troubleshoot');
89
+ }
90
  add_submenu_page('Acurax-Social-Widget-Settings', 'Acurax Social Widget Help and Support', 'Help', 8, 'Acurax-Social-Widget-Help' ,'acx_social_widget_icon_help');
91
  }
92
 
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
  #acurax-social-media-widget .plugin-title
49
  {
@@ -51,13 +51,11 @@ 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
  {
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
  #acurax-social-media-widget .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
  {
function.php CHANGED
@@ -213,7 +213,7 @@ function acx_widget_si_pluign_finish_version_update()
213
  </div>';
214
  }
215
  $acx_widget_si_current_version = get_option('acx_widget_si_current_version');
216
- if($acx_widget_si_current_version != '1.3.3') // Current Version
217
  {
218
  if (get_option('social_widget_icon_array_order') != "")
219
  {
@@ -382,236 +382,333 @@ function socialicons_widget_comparison($ad=2)
382
  {
383
  $ad_1 = '
384
  </hr>
385
- <p><b>This Plugin is the basic widget version of floating social media icon wordpress plugin. This plugin only support the icon pack and the widget. Premium Version of This plugin includes all the features of floating social media icon and a lot more. Premium version is same as the premium version of floating social media icon wordpress plugin.</b></p>
386
- <a name="compare"></a>
387
- <div id="fsmi_landing_holder">
388
- <div id="fsmi_lp_compare">
389
- <div class="row_1">
390
- <div class="fsmi_lp_compare_row_1_1"></div> <!-- fsmi_lp_compare_row_1_1 -->
391
- <div id="fsmi_lp_f_group">
392
- <div class="left" style="padding-top: 173px;padding-bottom: 172px;">
393
- Display
394
- </div> <!-- left -->
395
- <div class="right">
396
- <div class="fsmi_lp_compare_row_1_features">More Sharp Quality Icons</div> <!-- fsmi_lp_compare_row_1_features -->
397
- <div class="fsmi_lp_compare_row_1_features">20+ Icon Theme/Style</div> <!-- fsmi_lp_compare_row_1_features -->
398
- <div class="fsmi_lp_compare_row_1_features">Can Choose Icon Theme/Style</div> <!-- fsmi_lp_compare_row_1_features -->
399
- <div class="fsmi_lp_compare_row_1_features">Can Choose Icon Size</div> <!-- fsmi_lp_compare_row_1_features -->
400
- <div class="fsmi_lp_compare_row_1_features">Automatic/Manual Integration</div> <!-- fsmi_lp_compare_row_1_features -->
401
- <div class="fsmi_lp_compare_row_1_features">Set MouseOver text for each icon in Share Mode</div> <!-- fsmi_lp_compare_row_1_features -->
402
- <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 -->
403
- <div class="fsmi_lp_compare_row_1_features">Option to HIDE Invididual Share Icon</div> <!-- fsmi_lp_compare_row_1_features -->
404
- <div class="fsmi_lp_compare_row_1_features highlighted">Set Floating Icons in Vertical</div> <!-- fsmi_lp_compare_row_1_features -->
405
- <div class="fsmi_lp_compare_row_1_features highlighted">Define how many icons in 1 row</div> <!-- fsmi_lp_compare_row_1_features -->
406
- <div class="fsmi_lp_compare_row_1_features highlighted">Add Custom Icons</div> <!-- fsmi_lp_compare_row_1_features -->
407
- </div> <!-- right -->
408
- </div> <!-- fsmi_lp_f_group -->
409
- <div id="fsmi_lp_f_group">
410
- <div class="left" style="padding-top: 74px;padding-bottom: 74px;">
411
- Icon Function
412
- </div> <!-- left -->
413
- <div class="right">
414
- <div class="fsmi_lp_compare_row_1_features">Link to Social Media Profile</div> <!-- fsmi_lp_compare_row_1_features -->
415
- <div class="fsmi_lp_compare_row_1_features highlighted">Share On Social Media</div> <!-- fsmi_lp_compare_row_1_features -->
416
- <div class="fsmi_lp_compare_row_1_features">Show Share on Posts/Pages</div> <!-- fsmi_lp_compare_row_1_features -->
417
- <div class="fsmi_lp_compare_row_1_features highlighted">Efficient Image Picker For Pinterest</div> <!-- fsmi_lp_compare_row_1_features -->
418
- <div class="fsmi_lp_compare_row_1_features highlighted">Define Social Media Meta for Each Page/Post</div> <!-- fsmi_lp_compare_row_1_features -->
419
- </div> <!-- right -->
420
- </div> <!-- fsmi_lp_f_group -->
421
- <div id="fsmi_lp_f_group">
422
- <div class="left" style="padding-top: 23px;padding-bottom: 25px;">
423
- Animation
424
- </div> <!-- left -->
425
- <div class="right">
426
- <div class="fsmi_lp_compare_row_1_features">Fly Animation</div> <!-- fsmi_lp_compare_row_1_features -->
427
- <div class="fsmi_lp_compare_row_1_features highlighted">Mouse Over Effects</div> <!-- fsmi_lp_compare_row_1_features -->
428
- </div> <!-- right -->
429
- </div> <!-- fsmi_lp_f_group -->
430
- <div id="fsmi_lp_f_group">
431
- <div class="left" style="padding-top: 65px;padding-bottom: 65px;">
432
- Fly Animation Repeat Interval
433
- </div> <!-- left -->
434
- <div class="right">
435
- <div class="fsmi_lp_compare_row_1_features">Based On Time in Seconds</div> <!-- fsmi_lp_compare_row_1_features -->
436
- <div class="fsmi_lp_compare_row_1_features highlighted">Based On Time in Minutes</div> <!-- fsmi_lp_compare_row_1_features -->
437
- <div class="fsmi_lp_compare_row_1_features">Based On Time in Hours</div> <!-- fsmi_lp_compare_row_1_features -->
438
- <div class="fsmi_lp_compare_row_1_features">Based on Page Views</div> <!-- fsmi_lp_compare_row_1_features -->
439
- <div class="fsmi_lp_compare_row_1_features">Based On Page Views and Time</div> <!-- fsmi_lp_compare_row_1_features -->
440
- </div> <!-- right -->
441
- </div> <!-- fsmi_lp_f_group -->
442
- <div id="fsmi_lp_f_group">
443
- <div class="left highlighted" style="padding-top: 24px;padding-bottom: 24px;">
444
- Multiple Fly Animation
445
- </div> <!-- left -->
446
- <div class="right">
447
- <div class="fsmi_lp_compare_row_1_features">Can Choose Fly Start Position</div> <!-- fsmi_lp_compare_row_1_features -->
448
- <div class="fsmi_lp_compare_row_1_features">Can Choose Fly End Position</div> <!-- fsmi_lp_compare_row_1_features -->
449
- </div> <!-- right -->
450
- </div> <!-- fsmi_lp_f_group -->
451
- <div id="fsmi_lp_f_group">
452
- <div class="left" style="padding-top: 40px;padding-bottom: 41px;">
453
- Easy to Configure
454
- </div> <!-- left -->
455
- <div class="right">
456
- <div class="fsmi_lp_compare_row_1_features">Ajax Based Settings Page</div> <!-- fsmi_lp_compare_row_1_features -->
457
- <div class="fsmi_lp_compare_row_1_features">Drag & Drop Reorder Icons</div> <!-- fsmi_lp_compare_row_1_features -->
458
- <div class="fsmi_lp_compare_row_1_features">Easy to Configure</div> <!-- fsmi_lp_compare_row_1_features -->
459
- </div> <!-- right -->
460
- </div> <!-- fsmi_lp_f_group -->
461
- <div id="fsmi_lp_f_group">
462
- <div class="left" style="padding-top: 90px;padding-bottom: 90px;">
463
- Widget Support
464
- </div> <!-- left -->
465
- <div class="right">
466
- <div class="fsmi_lp_compare_row_1_features">Multiple Widgets</div> <!-- fsmi_lp_compare_row_1_features -->
467
- <div class="fsmi_lp_compare_row_1_features">Seperate Icon Style/Theme For Each</div> <!-- fsmi_lp_compare_row_1_features -->
468
- <div class="fsmi_lp_compare_row_1_features">Seperate Icon Size For Each</div> <!-- fsmi_lp_compare_row_1_features -->
469
- <div class="fsmi_lp_compare_row_1_features">Set whether the icons to Link Profiles/SHARE</div> <!-- fsmi_lp_compare_row_1_features -->
470
- <div class="fsmi_lp_compare_row_1_features highlighted">Seperate Mouse Over Multiple Animation for Each</div> <!-- fsmi_lp_compare_row_1_features -->
471
- <div class="fsmi_lp_compare_row_1_features">Seperate Default Opacity for Each</div> <!-- fsmi_lp_compare_row_1_features -->
472
- </div> <!-- right -->
473
- </div> <!-- fsmi_lp_f_group -->
474
- <div id="fsmi_lp_f_group">
475
- <div class="left" style="padding-top: 90px;padding-bottom: 90px;">
476
- Shortcode Support
477
- </div> <!-- left -->
478
- <div class="right">
479
- <div class="fsmi_lp_compare_row_1_features">Multiple Instances</div> <!-- fsmi_lp_compare_row_1_features -->
480
- <div class="fsmi_lp_compare_row_1_features">Seperate Icon Style/Theme For Each</div> <!-- fsmi_lp_compare_row_1_features -->
481
- <div class="fsmi_lp_compare_row_1_features highlighted">Seperate Icon Size For Each</div> <!-- fsmi_lp_compare_row_1_features -->
482
- <div class="fsmi_lp_compare_row_1_features">Set whether the icons to Link Profiles/SHARE</div> <!-- fsmi_lp_compare_row_1_features -->
483
- <div class="fsmi_lp_compare_row_1_features">Seperate Mouse Over Multiple Animation for Each</div> <!-- fsmi_lp_compare_row_1_features -->
484
- <div class="fsmi_lp_compare_row_1_features">Seperate Default Opacity for Each</div> <!-- fsmi_lp_compare_row_1_features -->
485
- </div> <!-- right -->
486
- </div> <!-- fsmi_lp_f_group -->
487
- <div id="fsmi_lp_f_group">
488
- <div class="left" style="padding-top: 106px;padding-bottom: 107px;border-bottom:0px;">
489
- PHP Code Support
490
- </div> <!-- left -->
491
- <div class="right">
492
- <div class="fsmi_lp_compare_row_1_features">Multiple Instances</div> <!-- fsmi_lp_compare_row_1_features -->
493
- <div class="fsmi_lp_compare_row_1_features">Use Outside Loop</div> <!-- fsmi_lp_compare_row_1_features -->
494
- <div class="fsmi_lp_compare_row_1_features">Seperate Icon Style/Theme For Each</div> <!-- fsmi_lp_compare_row_1_features -->
495
- <div class="fsmi_lp_compare_row_1_features">Seperate Icon Size For Each</div> <!-- fsmi_lp_compare_row_1_features -->
496
- <div class="fsmi_lp_compare_row_1_features highlighted">Set whether the icons to Link Profiles/SHARE</div> <!-- fsmi_lp_compare_row_1_features -->
497
- <div class="fsmi_lp_compare_row_1_features">Seperate Mouse Over Multiple Animation for Each</div> <!-- fsmi_lp_compare_row_1_features -->
498
- <div class="fsmi_lp_compare_row_1_features" style="border-bottom:0px;">Seperate Default Opacity for Each</div> <!-- fsmi_lp_compare_row_1_features -->
499
- </div> <!-- right -->
500
- </div> <!-- fsmi_lp_f_group -->
501
- </div> <!-- row_1 -->
502
- <div class="row_2">
503
- <div class="fsmi_lp_compare_row_2_1"></div> <!-- fsmi_lp_compare_row_2_1 -->
504
- <div class="row_2_border">
505
- <div class="fsmi_lp_compare_row_2_2"></div> <!-- fsmi_lp_compare_row_2_1 -->
506
- <div class="n"></div>
507
- <div class="y"></div>
508
- <div class="y"></div>
509
- <div class="y"></div>
510
- <div class="n"></div>
511
- <div class="n"></div>
512
- <div class="n"></div>
513
- <div class="n"></div>
514
- <div class="n"></div>
515
- <div class="n"></div>
516
- <div class="n"></div>
517
- <div class="y"></div>
518
- <div class="n"></div>
519
- <div class="n"></div>
520
- <div class="n"></div>
521
- <div class="n"></div>
522
- <div class="n"></div>
523
- <div class="n"></div>
524
- <div class="n"></div>
525
- <div class="n"></div>
526
- <div class="n"></div>
527
- <div class="n"></div>
528
- <div class="n"></div>
529
- <div class="n"></div>
530
- <div class="n"></div>
531
- <div class="n"></div>
532
- <div class="y"></div>
533
- <div class="n"></div>
534
- <div class="y"></div>
535
- <div class="y"></div>
536
- <div class="y"></div>
537
- <div class="n"></div>
538
- <div class="n"></div>
539
- <div class="n"></div>
540
- <div class="n"></div>
541
- <div class="n"></div>
542
- <div class="n"></div>
543
- <div class="n"></div>
544
- <div class="n"></div>
545
- <div class="n"></div>
546
- <div class="n"></div>
547
- <div class="n"></div>
548
- <div class="n"></div>
549
- <div class="n"></div>
550
- <div class="n"></div>
551
- <div class="n"></div>
552
- <div class="n" style="border-bottom:0px;"></div>
553
- </div> <!-- row_2_border -->
554
- </div> <!-- row_2 -->
555
- <div class="row_3">
556
- <div class="fsmi_lp_compare_row_3_1"></div> <!-- fsmi_lp_compare_row_3_1 -->
557
- <div class="row_3_shadow">
558
- <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_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 -->
559
- <div class="y"></div> <!-- y -->
560
- <div class="y"></div> <!-- y -->
561
- <div class="y"></div> <!-- y -->
562
- <div class="y"></div> <!-- y -->
563
- <div class="y"></div> <!-- y -->
564
- <div class="y"></div> <!-- y -->
565
- <div class="y"></div> <!-- y -->
566
- <div class="y"></div> <!-- y -->
567
- <div class="y"></div> <!-- y -->
568
- <div class="y"></div> <!-- y -->
569
- <div class="y"></div> <!-- y -->
570
- <div class="y"></div> <!-- y -->
571
- <div class="y"></div> <!-- y -->
572
- <div class="y"></div> <!-- y -->
573
- <div class="y"></div> <!-- y -->
574
- <div class="y"></div> <!-- y -->
575
- <div class="y"></div> <!-- y -->
576
- <div class="y"></div> <!-- y -->
577
- <div class="y"></div> <!-- y -->
578
- <div class="y"></div> <!-- y -->
579
- <div class="y"></div> <!-- y -->
580
- <div class="y"></div> <!-- y -->
581
- <div class="y"></div> <!-- y -->
582
- <div class="y"></div> <!-- y -->
583
- <div class="y"></div> <!-- y -->
584
- <div class="y"></div> <!-- y -->
585
- <div class="y"></div> <!-- y -->
586
- <div class="y"></div> <!-- y -->
587
- <div class="y"></div> <!-- y -->
588
- <div class="y"></div> <!-- y -->
589
- <div class="y"></div> <!-- y -->
590
- <div class="y"></div> <!-- y -->
591
- <div class="y"></div> <!-- y -->
592
- <div class="y"></div> <!-- y -->
593
- <div class="y"></div> <!-- y -->
594
- <div class="y"></div> <!-- y -->
595
- <div class="y"></div> <!-- y -->
596
- <div class="y"></div> <!-- y -->
597
- <div class="y"></div> <!-- y -->
598
- <div class="y"></div> <!-- y -->
599
- <div class="y"></div> <!-- y -->
600
- <div class="y"></div> <!-- y -->
601
- <div class="y"></div> <!-- y -->
602
- <div class="y"></div> <!-- y -->
603
- <div class="y"></div> <!-- y -->
604
- <div class="y"></div> <!-- y -->
605
- <div class="y" style="border-bottom:0px;"></div> <!-- y -->
606
- </div> <!-- row_3_shadow -->
607
- </div> <!-- row_3 -->
608
- </div> <!-- fsmi_lp_compare -->
609
- <div id="fsmi_lp_shadow"></div> <!-- fsmi_lp_shadow -->
610
- <!-- 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 -->
611
- </div> <!-- fsmi_landing_holder -->
612
- <div id="ad_fsmi_2_button_order" style="float:left;margin-left: 445px;">
613
- <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_fsmi_2_button_order_link"></div></a></div> <!-- ad_fsmi_2_button_order -->
614
- ';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
615
  $ad_2='<div id="ad_fsmi_2"> <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_settings&utm_medium=banner&utm_campaign=plugin_enjoy" target="_blank"><div id="ad_fsmi_2_button"></div></a> </div> <!-- ad_fsmi_2 --><br>
616
  <div id="ad_fsmi_2_button_order">
617
  <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_fsmi_2_button_order_link"></div></a></div> <!-- ad_fsmi_2_button_order --> ';
@@ -630,4 +727,46 @@ if (current_user_can('manage_options')) {
630
  }
631
  die(); // this is required to return a proper result
632
  } add_action('wp_ajax_acx_asmw_saveorder', 'acx_asmw_saveorder_callback');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
633
  ?>
213
  </div>';
214
  }
215
  $acx_widget_si_current_version = get_option('acx_widget_si_current_version');
216
+ if($acx_widget_si_current_version != '2.0') // Current Version
217
  {
218
  if (get_option('social_widget_icon_array_order') != "")
219
  {
382
  {
383
  $ad_1 = '
384
  </hr>
385
+ <a name="compare"></a><div id="ss_middle_wrapper">
386
+ <div id="ss_middle_center">
387
+ <div id="ss_middle_inline_block">
388
+
389
+ <div class="middle_h2_1">
390
+ <h2>Limited on Features ?</h2>
391
+ <h3>Compare and Decide</h3>
392
+ </div><!-- middle_h2_1 -->
393
+
394
+ <div id="ss_features_table">
395
+
396
+ <div id="ss_table_header">
397
+ <div class="tb_h1"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
398
+ <div class="tb_h2"> <h3>Features</h3> </div><!-- tb_h2 -->
399
+ <div class="tb_h3"> <div class="ss_download"> </div><!-- ss_download --> </div><!-- tb_h3 -->
400
+ <div class="tb_h4 fsmi_tb_h4"> <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_asmw_settings_table&utm_medium=link&utm_campaign=compare_buynow" target="_blank"><div class="ss_buy_now"> </div><!-- ss_buy_now --></a> </div><!-- tb_h4 -->
401
+ </div><!-- ss_table_header -->
402
+
403
+ <div class="ss_column_holder">
404
+
405
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
406
+ <div class="ss_feature_group" style="padding-top: 197px;"> Display </div><!-- -->
407
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
408
+ <div class="ss_features">
409
+ <ul>
410
+ <li>More Sharp Quality Icons</li>
411
+ <li>20+ Icon Theme/Style</li>
412
+ <li>Can Choose Icon Theme/Style</li>
413
+ <li>Can Choose Icon Size</li>
414
+ <li>Automatic/Manual Integration</li>
415
+ <li>Set MouseOver text for each icon in Share Mode</li>
416
+ <li>Set MouseOver text for each icon in Profile Link Mode</li>
417
+ <li>Option to HIDE Invididual Share Icon</li>
418
+ <li><strong>Set Floating Icons in Vertical</strong></li>
419
+ <li><strong>Define how many icons in 1 row</strong></li>
420
+ <li class="ss_last_one"><strong>Add Custom Icons</strong></li>
421
+ </ul>
422
+ </div><!-- ss_features -->
423
+
424
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
425
+ <div class="ss_y_n_holder">
426
+ <div class="ss_no"> </div><!-- ss_no -->
427
+ <div class="ss_yes"> </div><!-- ss_yes -->
428
+ <div class="ss_yes"> </div><!-- ss_yes -->
429
+ <div class="ss_yes"> </div><!-- ss_yes -->
430
+ <div class="ss_yes"> </div><!-- ss_yes -->
431
+ <div class="ss_no"> </div><!-- ss_no -->
432
+ <div class="ss_no"> </div><!-- ss_no -->
433
+ <div class="ss_no"> </div><!-- ss_no -->
434
+ <div class="ss_no"> </div><!-- ss_no -->
435
+ <div class="ss_no"> </div><!-- ss_no -->
436
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
437
+ </div><!-- ss_y_n_holder -->
438
+
439
+ <div class="ss_y_n_holder">
440
+ <div class="ss_yes"> </div><!-- ss_yes -->
441
+ <div class="ss_yes"> </div><!-- ss_yes -->
442
+ <div class="ss_yes"> </div><!-- ss_yes -->
443
+ <div class="ss_yes"> </div><!-- ss_yes -->
444
+ <div class="ss_yes"> </div><!-- ss_yes -->
445
+ <div class="ss_yes"> </div><!-- ss_yes -->
446
+ <div class="ss_yes"> </div><!-- ss_yes -->
447
+ <div class="ss_yes"> </div><!-- ss_yes -->
448
+ <div class="ss_yes"> </div><!-- ss_yes -->
449
+ <div class="ss_yes"> </div><!-- ss_yes -->
450
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
451
+ </div><!-- ss_y_n_holder -->
452
+
453
+ </div><!-- column_holder -->
454
+
455
+ <div class="ss_column_holder">
456
+
457
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
458
+ <div class="ss_feature_group" style="padding-top: 30px;"> Icon Function </div><!-- -->
459
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
460
+ <div class="ss_features">
461
+ <ul>
462
+ <li>Link to Social Media Profile</li>
463
+ <li class="ss_last_one"><strong>Share On Social Media</strong></li>
464
+ </ul>
465
+ </div><!-- ss_features -->
466
+
467
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
468
+ <div class="ss_y_n_holder">
469
+ <div class="ss_yes"> </div><!-- ss_yes -->
470
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
471
+ </div><!-- ss_y_n_holder -->
472
+
473
+ <div class="ss_y_n_holder">
474
+ <div class="ss_yes"> </div><!-- ss_yes -->
475
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
476
+ </div><!-- ss_y_n_holder -->
477
+
478
+ </div><!-- column_holder -->
479
+
480
+ <div class="ss_column_holder">
481
+
482
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
483
+ <div class="ss_feature_group" style="padding-top: 30px;"> Animation </div><!-- -->
484
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
485
+ <div class="ss_features">
486
+ <ul>
487
+ <li>Fly Animation</li>
488
+ <li class="ss_last_one"><strong>Mouse Over Effects</strong></li>
489
+ </ul>
490
+ </div><!-- ss_features -->
491
+
492
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
493
+ <div class="ss_y_n_holder">
494
+ <div class="ss_yes"> </div><!-- ss_yes -->
495
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
496
+ </div><!-- ss_y_n_holder -->
497
+
498
+ <div class="ss_y_n_holder">
499
+ <div class="ss_yes"> </div><!-- ss_yes -->
500
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
501
+ </div><!-- ss_y_n_holder -->
502
+
503
+ </div><!-- column_holder -->
504
+
505
+ <div class="ss_column_holder">
506
+
507
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
508
+ <div class="ss_feature_group" style="padding-top: 84px;"> Fly Animation Repeat Interval</div><!-- -->
509
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
510
+ <div class="ss_features">
511
+ <ul>
512
+ <li>Based On Time in Seconds</li>
513
+ <li><strong>Based On Time in Minutes</strong></li>
514
+ <li>Based On Time in Hours</li>
515
+ <li>Based on Page Views</li>
516
+ <li class="ss_last_one">Based On Page Views and Time</li>
517
+ </ul>
518
+ </div><!-- ss_features -->
519
+
520
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
521
+ <div class="ss_y_n_holder">
522
+ <div class="ss_no"> </div><!-- ss_no -->
523
+ <div class="ss_no"> </div><!-- ss_no -->
524
+ <div class="ss_no"> </div><!-- ss_no -->
525
+ <div class="ss_no"> </div><!-- ss_no -->
526
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
527
+ </div><!-- ss_y_n_holder -->
528
+
529
+ <div class="ss_y_n_holder">
530
+ <div class="ss_yes"> </div><!-- ss_yes -->
531
+ <div class="ss_yes"> </div><!-- ss_yes -->
532
+ <div class="ss_yes"> </div><!-- ss_yes -->
533
+ <div class="ss_yes"> </div><!-- ss_yes -->
534
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
535
+ </div><!-- ss_y_n_holder -->
536
+
537
+ </div><!-- column_holder -->
538
+
539
+ <div class="ss_column_holder">
540
+
541
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
542
+ <div class="ss_feature_group" style="padding-top: 30px;"> Multiple Fly Animation<br/></div><!-- -->
543
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
544
+ <div class="ss_features">
545
+ <ul>
546
+ <li>Can Choose Fly Start Position</li>
547
+ <li class="ss_last_one">Can Choose Fly End Position</li>
548
+ </ul>
549
+ </div><!-- ss_features -->
550
+
551
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
552
+ <div class="ss_y_n_holder">
553
+ <div class="ss_no"> </div><!-- ss_no -->
554
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
555
+ </div><!-- ss_y_n_holder -->
556
+
557
+ <div class="ss_y_n_holder">
558
+ <div class="ss_yes"> </div><!-- ss_yes -->
559
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
560
+ </div><!-- ss_y_n_holder -->
561
+
562
+ </div><!-- column_holder -->
563
+
564
+ <div class="ss_column_holder">
565
+
566
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
567
+ <div class="ss_feature_group" style="padding-top: 52px;">Easy to Configure</div><!-- -->
568
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
569
+ <div class="ss_features">
570
+ <ul>
571
+ <li>Ajax Based Settings Page</li>
572
+ <li>Drag & Drop Reorder Icons</li>
573
+ <li class="ss_last_one">Easy to Configure</li>
574
+ </ul>
575
+ </div><!-- ss_features -->
576
+
577
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
578
+ <div class="ss_y_n_holder">
579
+ <div class="ss_no"> </div><!-- ss_no -->
580
+ <div class="ss_yes"> </div><!-- ss_yes -->
581
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
582
+ </div><!-- ss_y_n_holder -->
583
+
584
+ <div class="ss_y_n_holder">
585
+ <div class="ss_yes"> </div><!-- ss_yes -->
586
+ <div class="ss_yes"> </div><!-- ss_yes -->
587
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
588
+ </div><!-- ss_y_n_holder -->
589
+
590
+ </div><!-- column_holder -->
591
+
592
+ <div class="ss_column_holder">
593
+
594
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
595
+ <div class="ss_feature_group" style="padding-top: 106px;">Widget Support </div><!-- -->
596
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
597
+ <div class="ss_features">
598
+ <ul>
599
+ <li>Multiple Widgets</li>
600
+ <li>Separate Icon Style/Theme For Each</li>
601
+ <li>Separate Icon Size For Each</li>
602
+ <li>Set whether the icons to Link Profiles/SHARE</li>
603
+ <li><strong>Separate Mouse Over Multiple Animation for Each</strong></li>
604
+ <li class="ss_last_one">Separate Default Opacity for Each</li>
605
+ </ul>
606
+ </div><!-- ss_features -->
607
+
608
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
609
+ <div class="ss_y_n_holder">
610
+ <div class="ss_yes"> </div><!-- ss_yes -->
611
+ <div class="ss_yes"> </div><!-- ss_yes -->
612
+ <div class="ss_yes"> </div><!-- ss_yes -->
613
+ <div class="ss_no"> </div><!-- ss_no -->
614
+ <div class="ss_no"> </div><!-- ss_no -->
615
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
616
+ </div><!-- ss_y_n_holder -->
617
+
618
+ <div class="ss_y_n_holder">
619
+ <div class="ss_yes"> </div><!-- ss_yes -->
620
+ <div class="ss_yes"> </div><!-- ss_yes -->
621
+ <div class="ss_yes"> </div><!-- ss_yes -->
622
+ <div class="ss_yes"> </div><!-- ss_yes -->
623
+ <div class="ss_yes"> </div><!-- ss_yes -->
624
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
625
+ </div><!-- ss_y_n_holder -->
626
+
627
+ </div><!-- column_holder -->
628
+
629
+ <div class="ss_column_holder">
630
+
631
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
632
+ <div class="ss_feature_group" style="padding-top: 106px;">Shortcode Support </div><!-- -->
633
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
634
+ <div class="ss_features">
635
+ <ul>
636
+ <li>Multiple Instances</li>
637
+ <li>Separate Icon Style/Theme For Each</li>
638
+ <li><strong>Separate Icon Size For Each</strong></li>
639
+ <li>Set whether the icons to Link Profiles/SHARE</li>
640
+ <li>Separate Mouse Over Multiple Animation for Each</li>
641
+ <li class="ss_last_one">Separate Default Opacity for Each</li>
642
+ </ul>
643
+ </div><!-- ss_features -->
644
+
645
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
646
+ <div class="ss_y_n_holder">
647
+ <div class="ss_yes"> </div><!-- ss_yes -->
648
+ <div class="ss_yes"> </div><!-- ss_yes -->
649
+ <div class="ss_yes"> </div><!-- ss_yes -->
650
+ <div class="ss_no"> </div><!-- ss_no -->
651
+ <div class="ss_no"> </div><!-- ss_no -->
652
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
653
+ </div><!-- ss_y_n_holder -->
654
+
655
+ <div class="ss_y_n_holder">
656
+ <div class="ss_yes"> </div><!-- ss_yes -->
657
+ <div class="ss_yes"> </div><!-- ss_yes -->
658
+ <div class="ss_yes"> </div><!-- ss_yes -->
659
+ <div class="ss_yes"> </div><!-- ss_yes -->
660
+ <div class="ss_yes"> </div><!-- ss_yes -->
661
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
662
+ </div><!-- ss_y_n_holder -->
663
+
664
+ </div><!-- column_holder -->
665
+
666
+ <div class="ss_column_holder">
667
+
668
+ <div class="tb_h1 mini"> <h3>Feature Group</h3> </div><!-- tb_h1 -->
669
+ <div class="ss_feature_group" style="padding-top: 126px;">PHP Code Support </div><!-- -->
670
+ <div class="tb_h1 mini"> <h3>Features</h3> </div><!-- tb_h1 -->
671
+ <div class="ss_features">
672
+ <ul>
673
+ <li>Multiple Instances</li>
674
+ <li>Use Outside Loop</li>
675
+ <li>Separate Icon Style/Theme For Each</li>
676
+ <li>Separate Icon Size For Each</li>
677
+ <li><strong>Set whether the icons to Link Profiles/SHARE</strong></li>
678
+ <li>Separate Mouse Over Multiple Animation for Each</li>
679
+ <li class="ss_last_one">Separate Default Opacity for Each</li>
680
+ </ul>
681
+ </div><!-- ss_features -->
682
+
683
+ <div class="tb_h1 mini"> <h3>FREE &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp <span style="color: #ffe400;">PREMIUM</span></h3> </div><!-- tb_h1 -->
684
+ <div class="ss_y_n_holder">
685
+ <div class="ss_yes"> </div><!-- ss_yes -->
686
+ <div class="ss_yes"> </div><!-- ss_yes -->
687
+ <div class="ss_yes"> </div><!-- ss_yes -->
688
+ <div class="ss_yes"> </div><!-- ss_yes -->
689
+ <div class="ss_no"> </div><!-- ss_no -->
690
+ <div class="ss_no"> </div><!-- ss_no -->
691
+ <div class="ss_no ss_last_one"> </div><!-- ss_no -->
692
+ </div><!-- ss_y_n_holder -->
693
+
694
+ <div class="ss_y_n_holder">
695
+ <div class="ss_yes"> </div><!-- ss_yes -->
696
+ <div class="ss_yes"> </div><!-- ss_yes -->
697
+ <div class="ss_yes"> </div><!-- ss_yes -->
698
+ <div class="ss_yes"> </div><!-- ss_yes -->
699
+ <div class="ss_yes"> </div><!-- ss_yes -->
700
+ <div class="ss_yes"> </div><!-- ss_yes -->
701
+ <div class="ss_yes ss_last_one"> </div><!-- ss_yes -->
702
+ </div><!-- ss_y_n_holder -->
703
+
704
+ </div><!-- column_holder -->
705
+
706
+
707
+
708
+ </div><!-- ss_features_table -->
709
+
710
+ <div id="ad_fsmi_2_button_order" style="float: left; width: 100%;">
711
+ <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_asmw_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>';
712
  $ad_2='<div id="ad_fsmi_2"> <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_settings&utm_medium=banner&utm_campaign=plugin_enjoy" target="_blank"><div id="ad_fsmi_2_button"></div></a> </div> <!-- ad_fsmi_2 --><br>
713
  <div id="ad_fsmi_2_button_order">
714
  <a href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin_smw_settings&utm_medium=banner&utm_campaign=plugin_yellow_order" target="_blank"><div id="ad_fsmi_2_button_order_link"></div></a></div> <!-- ad_fsmi_2_button_order --> ';
727
  }
728
  die(); // this is required to return a proper result
729
  } add_action('wp_ajax_acx_asmw_saveorder', 'acx_asmw_saveorder_callback');
730
+ function acx_quick_widget_request_submit_callback()
731
+ {
732
+ $acx_name = $_POST['acx_name'];
733
+ $acx_email = $_POST['acx_email'];
734
+ $acx_phone = $_POST['acx_phone'];
735
+ $acx_weburl = $_POST['acx_weburl'];
736
+ $acx_subject = $_POST['acx_subject'];
737
+ $acx_question = $_POST['acx_question'];
738
+ if($acx_name == "" || $acx_email == "" || $acx_weburl == "" || $acx_subject == "" || $acx_question == "")
739
+ {
740
+ echo 2;
741
+ } else
742
+ {
743
+ $current_user_acx = wp_get_current_user();
744
+ $current_user_acx = $current_user->user_email;
745
+ if($current_user_acx == "")
746
+ {
747
+ $current_user_acx = $acx_email;
748
+ }
749
+ $headers[] = 'From: ' . $acx_name . ' <' . $current_user_acx . '>';
750
+ $headers[] = 'Content-Type: text/html; charset=UTF-8';
751
+ $message = "Name: ".$acx_name . "\r\n <br>";
752
+ $message = $message . "Email: ".$acx_email . "\r\n <br>";
753
+ if($acx_phone != "")
754
+ {
755
+ $message = $message . "Phone: ".$acx_phone . "\r\n <br>";
756
+ }
757
+ // In case any of our lines are larger than 70 characters, we should use wordwrap()
758
+ $acx_question = wordwrap($acx_question, 70, "\r\n <br>");
759
+ $message = $message . "Website: ".$acx_weburl . "\r\n <br>";
760
+ $message = $message . "Question: ".$acx_question . "\r\n <br>";
761
+ $emailed = wp_mail( 'info@acurax.com', $acx_subject, $message, $headers );
762
+ if($emailed)
763
+ {
764
+ echo 1;
765
+ } else
766
+ {
767
+ echo 0;
768
+ }
769
+ }
770
+ die(); // this is required to return a proper result
771
+ }add_action('wp_ajax_acx_quick_widget_request_submit','acx_quick_widget_request_submit_callback');
772
  ?>
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/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_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
readme.txt CHANGED
@@ -1,34 +1,35 @@
1
- === Acurax Social Media Widget ===
2
  Contributors: Acurax
3
 
4
- Tags: Social Media Widget,social,social icon widget,social media icon,socialmedia,pinterest widget,fb widget,facebook button,pinterest,social icon,social profile link,twitter facebook,social media button,pinterest button,rss icon,facebook profile url,google plus,google+,google plus button
5
  Requires at least: 2.8
6
- Tested up to: 3.9.1
7
  Stable tag: trunk
8
 
9
- Simple Wordpress Social Media Widget Plugin Where You Can Use Widget To Show Essential Social Media Icons - Can Select Social Media Icon Style , Size and alignment.
10
 
11
  == Description ==
12
 
13
- A Simple Wordpress Social Media Widget Plugin Which Allow You To Add Widget Which Links Social Media Icons to Your Social Media Profiles Twitter,Facebook,Pinterest,Youtube,Rss Feed,Linkedin,google plus...
14
 
15
- You can make the icons to appear using widget , on your sidebar.
16
 
17
  ★ Multiple Social Media Icon Widget Support
18
 
19
- ★ Each Social Media Widget Can Have Seperate Icon Theme and Icon Size
20
 
21
  ★ Drag and Drop Reorder Icons
22
 
23
- ★ Easy to configure user interface
24
 
25
- ★ Social Media Icon Size Selection Support
26
 
27
  ★ Support Essential Social Medias Only
28
 
29
  ★ Pinterest Support
30
 
31
-
 
32
  We Always Look Forward Your Comments and Suggestions for Future Updates. You can Submit Your Comments at our [Website](http://www.acurax.com/ "Website Designing")
33
 
34
 
@@ -38,6 +39,7 @@ This Social Media Widget Plugin is developed and maintained by [Acurax Internati
38
 
39
  [Acurax](http://www.acurax.com/ "Acurax Web Design Development Service") Provide [Wordpress Theme Design](http://www.acurax.com/services/web-designing.php "Wordpress Theme Design Service") and [Development](http://www.acurax.com/services/web-development.php "Wordpress Development") Services.
40
 
 
41
 
42
  == Installation ==
43
 
@@ -45,22 +47,22 @@ Extract the zip file and just drop the contents in the wp-content/plugins/ direc
45
 
46
  Then Visit Plugin Configuration Settings and select a theme and size for icons for the social media widget. configure your social profile url. You are done!
47
 
48
- You need to go to Apperance >> Widgets to add "Acurax Social Media Widget" Widget to your sidebar
49
 
50
 
51
- After Installation,Dont Forgot to Cast Your Vote on Combatibility :) Thanks for trying...
52
 
53
  == Frequently Asked Questions ==
54
 
55
  = How can i hide a social media icon? =
56
 
57
- To hide an icon, Just dont give any value for that button link.. it will automatically gets hiden.
58
 
59
  = How can i use the social media icon widget? =
60
 
61
  Plugin Support Social Media Widget, You can have **many number of widgets where on each social media widget you can configure the Social Media Icons size and Icon Design/Style**.
62
 
63
- To add a social media widget to your sidebar.. you theme must support sidebars. Go to **Apperance >> Widgets**,to add "Acurax Social Media Widget" widget to your sidebar.
64
 
65
  = How Many Social Media Widget Can i use? =
66
 
@@ -68,23 +70,27 @@ Plugin Support More than one instance of Social Media Widgets, SO you can use as
68
 
69
  = Why my social media icons are displaying vertically? =
70
 
71
- In addition to social media icon css styles generated by Acurax Social Media Widget plugin, theme css styles may also get applied and it causes this issue.
72
 
73
  = How can i fix the social media icon displaying vertical issue? =
74
 
75
  We have added an option in the misc page to enable and disable theme conflict fix, if your social media icon widget icons display as vertical, then please enable the theme conflict fix.
76
 
 
 
 
 
77
  = How can i help the development of this plugin? =
78
 
79
- Acurax Provide Most of all the wordpress related services like website design and development including plugin development, theme design and coding, Graphics Design range from header image designing to complete design and marketing of a website. we can do your projects. So here you get what u needs to get done and we getting business so a part of that can be used for the time that we spend to develop plugins like this social media widget.
80
 
81
  = There are a lot of other social media icon plugins, but why this plugin? =
82
 
83
- Most of all the plugins have more and more options which is only easly understandable by advanced users, those have a bunch of social media profile integrations. But in our case we choosen the must to have icons and made it perfect styling.. More icons on website make it look bad.. So use the essentials with sexy display.
84
 
85
  = Can i add my own icons for the social media profiles? =
86
 
87
- Sorry, Its not supported in this version, but we will be releasing a premium version which support a lot more easy options with in few weeks, we are on its development.
88
 
89
  = After Upgrading Plugin, Icons are not showing. why? =
90
 
@@ -109,6 +115,13 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
109
 
110
  == Upgrade Notice ==
111
 
 
 
 
 
 
 
 
112
  = 1.3.3 =
113
  * March 13, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
114
  * Added Theme Warning Ignore Option
@@ -150,6 +163,13 @@ Have more questions ? [Drop a mail](http://www.acurax.com/contact.php/ "Drop an
150
 
151
  == Changelog ==
152
 
 
 
 
 
 
 
 
153
  = 1.3.3 =
154
  * March 13, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
155
  * Added Theme Warning Ignore Option
1
+ === Social Media Widget by Acurax (aka Acurax Social Media Widget) ===
2
  Contributors: Acurax
3
 
4
+ Tags: Social Media Widget,social icon widget,social media icon,socialmedia,fb widget,business social media,pinterest,social media marketing tools,social profile link,twitter facebook,social media button,pinterest button,social media logos,social media buttons,google plus button
5
  Requires at least: 2.8
6
+ Tested up to: 4.0
7
  Stable tag: trunk
8
 
9
+ Social Media Widget Plugin, A Simple Social Icon Widget To Show Essential Social Media Icons - Can Select Social Media Icon Style , Size and Order.
10
 
11
  == Description ==
12
 
13
+ A Simple Wordpress Social Media Widget Plugin Which Allow You To Add Widgets Which Links Social Media Buttons to Your Social Network Profiles Twitter, Facebook,Pinterest, Youtube, Rss Feed, Linkedin, Google plus...
14
 
15
+ Display SocialMedia Icons Using Widgets , on your sidebar.
16
 
17
  ★ Multiple Social Media Icon Widget Support
18
 
19
+ ★ Each Social Media Widget Can Have Separate Icon Theme and Icon Size
20
 
21
  ★ Drag and Drop Reorder Icons
22
 
23
+ ★ Easy to Configure UI
24
 
25
+ Choose Social Media Icon Size
26
 
27
  ★ Support Essential Social Medias Only
28
 
29
  ★ Pinterest Support
30
 
31
+ We have 20+ icon styles to choose from, so that this will be a great plugin for your personal and business social media integration. You can have any number of social media bar
32
+
33
  We Always Look Forward Your Comments and Suggestions for Future Updates. You can Submit Your Comments at our [Website](http://www.acurax.com/ "Website Designing")
34
 
35
 
39
 
40
  [Acurax](http://www.acurax.com/ "Acurax Web Design Development Service") Provide [Wordpress Theme Design](http://www.acurax.com/services/web-designing.php "Wordpress Theme Design Service") and [Development](http://www.acurax.com/services/web-development.php "Wordpress Development") Services.
41
 
42
+ After Installation of this Social Media Integration Plugin,Don't Forgot to Cast Your Vote on Compatibility :) Thanks for trying...
43
 
44
  == Installation ==
45
 
47
 
48
  Then Visit Plugin Configuration Settings and select a theme and size for icons for the social media widget. configure your social profile url. You are done!
49
 
50
+ You need to go to Appearance >> Widgets to add "Acurax Social Media Widget" Widget to your sidebar
51
 
52
 
53
+ After Installation,Don't Forgot to Cast Your Vote on Compatibility :) Thanks for trying...
54
 
55
  == Frequently Asked Questions ==
56
 
57
  = How can i hide a social media icon? =
58
 
59
+ To hide an icon, Just don't give any value for that button link.. it will automatically gets hidden.
60
 
61
  = How can i use the social media icon widget? =
62
 
63
  Plugin Support Social Media Widget, You can have **many number of widgets where on each social media widget you can configure the Social Media Icons size and Icon Design/Style**.
64
 
65
+ To add a social media widget to your sidebar.. you theme must support sidebars. Go to **Appearance >> Widgets**,to add "Acurax Social Media Widget" widget to your sidebar.
66
 
67
  = How Many Social Media Widget Can i use? =
68
 
70
 
71
  = Why my social media icons are displaying vertically? =
72
 
73
+ In addition to social media icon css styles generated by Acurax Social Media Widget plugin, Your theme's css styles may also get applied and it causes this issue.
74
 
75
  = How can i fix the social media icon displaying vertical issue? =
76
 
77
  We have added an option in the misc page to enable and disable theme conflict fix, if your social media icon widget icons display as vertical, then please enable the theme conflict fix.
78
 
79
+ = How Many Social Media Widget Can i use? =
80
+
81
+ Plugin Support More than one instance of Social Media Widgets, SO you can use as many as widget on your sidebars.
82
+
83
  = How can i help the development of this plugin? =
84
 
85
+ Acurax Provide Most of all the Wordpress related services like website design and development including plugin development, theme design and coding, Graphics Design range from header image designing to complete design and marketing of a website. we can do your projects. So here you get what u needs to get done and we getting business so a part of that can be used for the time that we spend to develop plugins like this social media widget.
86
 
87
  = There are a lot of other social media icon plugins, but why this plugin? =
88
 
89
+ Most of all the plugins have more and more options which is only easily understandable by advanced users, those have a bunch of social media profile integrations. But in our case we chosen the must to have icons and made it perfect styling.. More icons on website make it look bad.. So use the essentials with sexy display.
90
 
91
  = Can i add my own icons for the social media profiles? =
92
 
93
+ Sorry, Its not supported in this version, but available on our premium version
94
 
95
  = After Upgrading Plugin, Icons are not showing. why? =
96
 
115
 
116
  == Upgrade Notice ==
117
 
118
+ = 2.0 =
119
+ * June 07, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
120
+ * Stable Release
121
+ * Optimized Codes
122
+ * Added Troubleshoot Menu
123
+ * Configuration Style Improvements
124
+
125
  = 1.3.3 =
126
  * March 13, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
127
  * Added Theme Warning Ignore Option
163
 
164
  == Changelog ==
165
 
166
+ = 2.0 =
167
+ * June 07, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
168
+ * Stable Release
169
+ * Optimized Codes
170
+ * Added Troubleshoot Menu
171
+ * Configuration Style Improvements
172
+
173
  = 1.3.3 =
174
  * March 13, 2014 | NOTE: UPGRADING PLUGIN WILL NOT CHANGE YOUR SETTINGS/CONFIGURATION.. UPGRADE WITH CONFIDENCE :)
175
  * Added Theme Warning Ignore Option
smw-misc.php CHANGED
@@ -11,6 +11,8 @@ $acx_si_smw_float_fix = $_POST['acx_si_smw_float_fix'];
11
  update_option('acx_si_smw_float_fix', $acx_si_smw_float_fix);
12
  $acx_si_smw_hide_advert = $_POST['acx_si_smw_hide_advert'];
13
  update_option('acx_si_smw_hide_advert', $acx_si_smw_hide_advert);
 
 
14
  ?>
15
  <div class="updated"><p><strong><?php _e('Acurax Widgets Misc Settings Saved!.' ); ?></strong></p></div>
16
  <?php
@@ -22,32 +24,48 @@ $acx_si_smw_theme_warning_ignore = get_option('acx_si_smw_theme_warning_ignore')
22
  $acx_si_smw_acx_service_banners = get_option('acx_si_smw_acx_service_banners');
23
  $acx_si_smw_float_fix = get_option('acx_si_smw_float_fix');
24
  $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
 
25
  // Setting Defaults
26
  if ($acx_si_smw_menu_highlight == "") { $acx_si_smw_menu_highlight = "yes"; }
27
  if ($acx_si_smw_theme_warning_ignore == "") { $acx_si_smw_theme_warning_ignore = "no"; }
28
  if ($acx_si_smw_acx_service_banners == "") { $acx_si_smw_acx_service_banners = "yes"; }
29
  if ($acx_si_smw_float_fix == "") { $acx_si_smw_float_fix = "no"; }
30
  if ($acx_si_smw_hide_advert == "") { $acx_si_smw_hide_advert = "no"; }
 
31
  } //Main else
32
  ?>
33
  <div class="wrap">
 
34
  <?php
35
  if ($acx_si_smw_acx_service_banners != "no") { ?>
36
- <p class="widefat" style="padding:8px;width:99%;height: 75px;">
37
- <b>Acurax Services >> </b><br>
38
- <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>
39
- <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>
40
- <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>
41
- <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>
42
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  <?php } else { ?>
44
  <p class="widefat" style="padding:8px;width:99%;">
45
  <b>Acurax Services >> </b>
46
- <a href="http://www.acurax.com/services/blog-design.php" target="_blank">Wordpress Theme Design</a> |
47
- <a href="http://www.acurax.com/services/web-designing.php" target="_blank">Website Design</a> |
48
- <a href="http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php" target="_blank">Social Profile Design</a> |
49
- <a href="http://www.acurax.com/social-media-marketing-optimization/twitter-background-design.php" target="_blank">Twitter Background Design</a> |
50
- <a href="http://www.acurax.com/social-media-marketing-optimization/facebook-page-design.php" target="_blank">Facebook Page Design</a>
51
  </p>
52
  <?php } ?>
53
  <?php if($acx_si_smw_hide_advert == "no")
@@ -81,6 +99,19 @@ if ($acx_si_smw_acx_service_banners != "no") { ?>
81
  </select>
82
  <?php _e("Would you like to hide the feature comparison advertisement of basic and premium version from plugin settings pages?" ); ?>
83
  </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  <p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Social Media Widget Theme Conflict Fix: " ); ?>
85
  <select name="acx_si_smw_float_fix">
86
  <option value="yes"<?php if ($acx_si_smw_float_fix == "yes") { echo 'selected="selected"'; } ?>>Enable </option>
@@ -110,4 +141,5 @@ socialicons_widget_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_smw_float_fix', $acx_si_smw_float_fix);
12
  $acx_si_smw_hide_advert = $_POST['acx_si_smw_hide_advert'];
13
  update_option('acx_si_smw_hide_advert', $acx_si_smw_hide_advert);
14
+ $acx_si_asmw_hide_expert_support_menu = $_POST['acx_si_asmw_hide_expert_support_menu'];
15
+ update_option('acx_si_asmw_hide_expert_support_menu', $acx_si_asmw_hide_expert_support_menu);
16
  ?>
17
  <div class="updated"><p><strong><?php _e('Acurax Widgets Misc Settings Saved!.' ); ?></strong></p></div>
18
  <?php
24
  $acx_si_smw_acx_service_banners = get_option('acx_si_smw_acx_service_banners');
25
  $acx_si_smw_float_fix = get_option('acx_si_smw_float_fix');
26
  $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
27
+ $acx_si_asmw_hide_expert_support_menu = get_option('acx_si_asmw_hide_expert_support_menu');
28
  // Setting Defaults
29
  if ($acx_si_smw_menu_highlight == "") { $acx_si_smw_menu_highlight = "yes"; }
30
  if ($acx_si_smw_theme_warning_ignore == "") { $acx_si_smw_theme_warning_ignore = "no"; }
31
  if ($acx_si_smw_acx_service_banners == "") { $acx_si_smw_acx_service_banners = "yes"; }
32
  if ($acx_si_smw_float_fix == "") { $acx_si_smw_float_fix = "no"; }
33
  if ($acx_si_smw_hide_advert == "") { $acx_si_smw_hide_advert = "no"; }
34
+ if ($acx_si_asmw_hide_expert_support_menu == "") { $acx_si_asmw_hide_expert_support_menu = "no"; }
35
  } //Main else
36
  ?>
37
  <div class="wrap">
38
+ <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%;'>
39
  <?php
40
  if ($acx_si_smw_acx_service_banners != "no") { ?>
41
+ <div id="acx_ad_banners_fsmi">
42
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=asmw" target="_blank" class="acx_ad_fsmi_1">
43
+ <div class="acx_ad_fsmi_title">Wordpress Expert Support</div> <!-- acx_ad_fsmi_title -->
44
+ <div class="acx_ad_fsmi_desc">Troubleshoot WordPress site issues</div> <!-- acx_ad_fsmi_desc -->
45
+ </a> <!-- acx_ad_fsmi_1 -->
46
+
47
+ <a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=asmw" target="_blank" class="acx_ad_fsmi_1">
48
+ <div class="acx_ad_fsmi_title">Custom Theme Design</div> <!-- acx_ad_fsmi_title -->
49
+ <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 -->
50
+ </a> <!-- acx_ad_fsmi_1 -->
51
+
52
+ <a href="http://www.acurax.com/services/web-development.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=asmw" target="_blank" class="acx_ad_fsmi_1">
53
+ <div class="acx_ad_fsmi_title">Plugin Development</div> <!-- acx_ad_fsmi_title -->
54
+ <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 -->
55
+ </a> <!-- acx_ad_fsmi_1 -->
56
+
57
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=asmw" target="_blank" class="acx_ad_fsmi_1">
58
+ <div class="acx_ad_fsmi_title">Quick Support</div> <!-- acx_ad_fsmi_title -->
59
+ <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 -->
60
+ </a> <!-- acx_ad_fsmi_1 -->
61
+ </div> <!-- acx_ad_banners_fsmi -->
62
  <?php } else { ?>
63
  <p class="widefat" style="padding:8px;width:99%;">
64
  <b>Acurax Services >> </b>
65
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=asmw" target="_blank">Wordpress Expert Support</a> |
66
+ <a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=asmw" target="_blank">Custom Theme Design</a> |
67
+ <a href="http://www.acurax.com/services/web-development.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=asmw" target="_blank">Plugin Development</a> |
68
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=asmw" target="_blank">Quick Support</a>
 
69
  </p>
70
  <?php } ?>
71
  <?php if($acx_si_smw_hide_advert == "no")
99
  </select>
100
  <?php _e("Would you like to hide the feature comparison advertisement of basic and premium version from plugin settings pages?" ); ?>
101
  </p>
102
+
103
+
104
+
105
+ <p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Hide Expert Support Menu?: " ); ?>
106
+ <select name="acx_si_asmw_hide_expert_support_menu">
107
+ <option value="yes"<?php if ($acx_si_asmw_hide_expert_support_menu == "yes") { echo 'selected="selected"'; } ?>>Yes </option>
108
+ <option value="no"<?php if ($acx_si_asmw_hide_expert_support_menu == "no") { echo 'selected="selected"'; } ?>>No </option>
109
+ </select>
110
+ <?php _e("Would you like to hide the expert support sub menu?" ); ?>
111
+ </p>
112
+
113
+
114
+
115
  <p class="widefat" style="padding:8px;width:99%;margin-top:8px;"> <?php _e("Social Media Widget Theme Conflict Fix: " ); ?>
116
  <select name="acx_si_smw_float_fix">
117
  <option value="yes"<?php if ($acx_si_smw_float_fix == "yes") { echo 'selected="selected"'; } ?>>Enable </option>
141
  <p class="widefat" style="padding:8px;width:99%;">
142
  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>
143
  </p>
144
+ </div>
145
  </div>
social-help.php CHANGED
@@ -4,14 +4,14 @@ $acx_si_smw_hide_advert = get_option('acx_si_smw_hide_advert');
4
  if($acx_si_smw_hide_advert == "no")
5
  {
6
  ?>
7
- <div id="acx_fsmi_premium">
8
  <a style="margin: 8px 0px 0px 10px; float: left; font-size: 16px; font-weight: bold;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=help&utm_campaign=widget_plugin" target="_blank">Fully Featured - Premium Acurax Social Media Widget</a>
9
  <a style="margin: -14px 0px 0px 10px; float: left;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=help_yellow&utm_campaign=widget_plugin" target="_blank"><img src="<?php echo plugins_url('images/yellow.png', __FILE__);?>"></a>
10
  </div> <!-- acx_fsmi_premium -->
11
  <?php } ?>
12
  <h2>Acurax Social Media Widget - Wordpress Plugin - Help/Support</h2>
13
- <p>Thank you for using Acurax Social Media Widget Plugin For Your Wordpress Social Media Profile Linking Need.</p>
14
- <h3><a href="http://clients.acurax.com/link.php?id=14" target="_blank">Click here to open the FAQ and Help Page</a></h3>
15
  <?php
16
  if($acx_si_smw_hide_advert == "no")
17
  {
4
  if($acx_si_smw_hide_advert == "no")
5
  {
6
  ?>
7
+ <div id="acx_fsmi_premium" style="text-align:center;">
8
  <a style="margin: 8px 0px 0px 10px; float: left; font-size: 16px; font-weight: bold;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=help&utm_campaign=widget_plugin" target="_blank">Fully Featured - Premium Acurax Social Media Widget</a>
9
  <a style="margin: -14px 0px 0px 10px; float: left;" href="http://clients.acurax.com/floating-socialmedia.php?utm_source=plugin&utm_medium=help_yellow&utm_campaign=widget_plugin" target="_blank"><img src="<?php echo plugins_url('images/yellow.png', __FILE__);?>"></a>
10
  </div> <!-- acx_fsmi_premium -->
11
  <?php } ?>
12
  <h2>Acurax Social Media Widget - Wordpress Plugin - Help/Support</h2>
13
+ <p style="text-align:center;">Thank you for using Acurax Social Media Widget Plugin For Your Wordpress Social Media Profile Linking Need.</p>
14
+ <h3 style="text-align:center;"><a href="http://clients.acurax.com/link.php?id=14" target="_blank" class="button">Click here to open the FAQ and Help Page</a></h3>
15
  <?php
16
  if($acx_si_smw_hide_advert == "no")
17
  {
social-icon.php CHANGED
@@ -60,7 +60,7 @@ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
60
  $social_widget_icon_array_order = array(0,1,2,3,4,5,6);
61
  $social_widget_icon_array_order = serialize($social_widget_icon_array_order);
62
  update_option('social_widget_icon_array_order', $social_widget_icon_array_order);
63
- $acx_widget_si_current_version = "1.3.3"; // Current Version
64
  update_option('acx_widget_si_current_version', $acx_widget_si_current_version);
65
  } else
66
  {
@@ -105,24 +105,38 @@ update_option('acx_widget_si_installed_date', $acx_widget_si_installed_date);
105
 
106
 
107
  <div class="wrap">
 
108
  <?php
109
  $acx_si_smw_acx_service_banners = get_option('acx_si_smw_acx_service_banners');
110
  if ($acx_si_smw_acx_service_banners != "no") { ?>
111
- <p class="widefat" style="padding:8px;width:99%;height: 75px;">
112
- <b>Acurax Services >> </b><br>
113
- <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>
114
- <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>
115
- <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>
116
- <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>
117
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  <?php } else { ?>
119
  <p class="widefat" style="padding:8px;width:99%;">
120
  <b>Acurax Services >> </b>
121
- <a href="http://www.acurax.com/services/blog-design.php" target="_blank">Wordpress Theme Design</a> |
122
- <a href="http://www.acurax.com/services/web-designing.php" target="_blank">Website Design</a> |
123
- <a href="http://www.acurax.com/social-media-marketing-optimization/social-profile-design.php" target="_blank">Social Profile Design</a> |
124
- <a href="http://www.acurax.com/social-media-marketing-optimization/twitter-background-design.php" target="_blank">Twitter Background Design</a> |
125
- <a href="http://www.acurax.com/social-media-marketing-optimization/facebook-page-design.php" target="_blank">Facebook Page Design</a>
126
  </p>
127
  <?php } ?>
128
  <?php if($acx_si_smw_hide_advert == "no")
@@ -314,14 +328,14 @@ if ($acx_si_smw_acx_service_banners != "no") { ?>
314
  <?php _e("<b>Eg:</b> http://www.yourwebsite.com/feed" ); ?>
315
  </p>
316
  <p class="submit">
317
- <input type="submit" name="Submit" value="<?php _e('Update Acurax Social Icon', 'acx_widget_si_config' ) ?>" />
318
  <a name="updated">.</a>
319
  </p>
320
  </form>
321
  <?php if($_GET["status"] == "updated") { ?>
322
  <div style="display: block; background-color: rgb(255, 255, 224); padding: 10px; border: 1px solid rgb(230, 219, 85); font-family: arial; font-size: 13px; font-weight: bold; text-align: center; border-radius: 10px 10px 10px 10px;">Acurax Social Media Widget Update Successfully Completed - Thank You</div>
323
  <?php
324
- $acx_widget_si_current_version = "1.3.3"; // Current Version
325
  update_option('acx_widget_si_current_version', $acx_widget_si_current_version);
326
  } ?>
327
  <hr/>
@@ -334,4 +348,5 @@ socialicons_widget_comparison(1);
334
  <p class="widefat" style="padding:8px;width:99%;">
335
  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>
336
  </p>
 
337
  </div>
60
  $social_widget_icon_array_order = array(0,1,2,3,4,5,6);
61
  $social_widget_icon_array_order = serialize($social_widget_icon_array_order);
62
  update_option('social_widget_icon_array_order', $social_widget_icon_array_order);
63
+ $acx_widget_si_current_version = "2.0"; // Current Version
64
  update_option('acx_widget_si_current_version', $acx_widget_si_current_version);
65
  } else
66
  {
105
 
106
 
107
  <div class="wrap">
108
+ <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%;'>
109
  <?php
110
  $acx_si_smw_acx_service_banners = get_option('acx_si_smw_acx_service_banners');
111
  if ($acx_si_smw_acx_service_banners != "no") { ?>
112
+ <div id="acx_ad_banners_fsmi">
113
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=asmw" target="_blank" class="acx_ad_fsmi_1">
114
+ <div class="acx_ad_fsmi_title">Wordpress Expert Support</div> <!-- acx_ad_fsmi_title -->
115
+ <div class="acx_ad_fsmi_desc">Troubleshoot WordPress site issues</div> <!-- acx_ad_fsmi_desc -->
116
+ </a> <!-- acx_ad_fsmi_1 -->
117
+
118
+ <a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=asmw" target="_blank" class="acx_ad_fsmi_1">
119
+ <div class="acx_ad_fsmi_title">Custom Theme Design</div> <!-- acx_ad_fsmi_title -->
120
+ <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 -->
121
+ </a> <!-- acx_ad_fsmi_1 -->
122
+
123
+ <a href="http://www.acurax.com/services/web-development.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=asmw" target="_blank" class="acx_ad_fsmi_1">
124
+ <div class="acx_ad_fsmi_title">Plugin Development</div> <!-- acx_ad_fsmi_title -->
125
+ <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 -->
126
+ </a> <!-- acx_ad_fsmi_1 -->
127
+
128
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner&utm_campaign=asmw" target="_blank" class="acx_ad_fsmi_1">
129
+ <div class="acx_ad_fsmi_title">Quick Support</div> <!-- acx_ad_fsmi_title -->
130
+ <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 -->
131
+ </a> <!-- acx_ad_fsmi_1 -->
132
+ </div> <!-- acx_ad_banners_fsmi -->
133
  <?php } else { ?>
134
  <p class="widefat" style="padding:8px;width:99%;">
135
  <b>Acurax Services >> </b>
136
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=asmw" target="_blank">Wordpress Expert Support</a> |
137
+ <a href="http://www.acurax.com/services/website-redesign.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=asmw" target="_blank">Custom Theme Design</a> |
138
+ <a href="http://www.acurax.com/services/web-development.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=asmw" target="_blank">Plugin Development</a> |
139
+ <a href="http://www.acurax.com/services/wordpress-designing-experts.php?utm_source=plugin-page&utm_medium=banner_link&utm_campaign=asmw" target="_blank">Quick Support</a>
 
140
  </p>
141
  <?php } ?>
142
  <?php if($acx_si_smw_hide_advert == "no")
328
  <?php _e("<b>Eg:</b> http://www.yourwebsite.com/feed" ); ?>
329
  </p>
330
  <p class="submit">
331
+ <input type="submit" name="Submit" value="<?php _e('Save Changes', 'acx_widget_si_config' ) ?>" />
332
  <a name="updated">.</a>
333
  </p>
334
  </form>
335
  <?php if($_GET["status"] == "updated") { ?>
336
  <div style="display: block; background-color: rgb(255, 255, 224); padding: 10px; border: 1px solid rgb(230, 219, 85); font-family: arial; font-size: 13px; font-weight: bold; text-align: center; border-radius: 10px 10px 10px 10px;">Acurax Social Media Widget Update Successfully Completed - Thank You</div>
337
  <?php
338
+ $acx_widget_si_current_version = "2.0"; // Current Version
339
  update_option('acx_widget_si_current_version', $acx_widget_si_current_version);
340
  } ?>
341
  <hr/>
348
  <p class="widefat" style="padding:8px;width:99%;">
349
  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>
350
  </p>
351
+ </div>
352
  </div>
style_admin.css CHANGED
@@ -1,3 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  #icon_selection
2
  {
3
  background: none repeat scroll 0 0 white;
@@ -22,7 +44,7 @@
22
  font-size: 12px;
23
  margin-left: auto;
24
  margin-right: auto;
25
- max-height: 120px;
26
  overflow-y: scroll;
27
  padding: 5px 7px 10px;
28
  text-shadow: 0 0 1px #F7F7F7;
@@ -36,7 +58,7 @@
36
  margin-bottom: 8px;
37
  margin-left: 7px;
38
  padding: 2px;
39
- width: 365px;
40
  }
41
  #acx_widget_si_theme_display .acx_widget_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,122 +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;
193
- display: block;
194
- height: 50px;
195
- margin-right: 8px;
196
- margin-top: 4px;
197
- width: 240px;
198
- float:left;
199
- border: 3px solid gray;
200
- box-shadow: 1px 1px 11px -5px black;
201
- }
202
- #wd
203
- {
204
- background: url("images/wd.jpg") repeat scroll 0 0 transparent;
205
- display: block;
206
- height: 50px;
207
- margin-right: 8px;
208
- margin-top: 4px;
209
- width: 240px;
210
- float:left;
211
- border: 3px solid gray;
212
- box-shadow: 1px 1px 11px -5px black;
213
- }
214
- #wrd
215
- {
216
- background: url("images/wr.jpg") repeat scroll 0 0 transparent;
217
- display: block;
218
- height: 50px;
219
- margin-right: 8px;
220
- margin-top: 4px;
221
- width: 240px;
222
- float:left;
223
- border: 3px solid gray;
224
- box-shadow: 1px 1px 11px -5px black;
225
- }
226
- #spd
227
- {
228
- background: url("images/spd.jpg") repeat scroll 0 0 transparent;
229
- display: block;
230
- height: 50px;
231
- margin-right: 8px;
232
- margin-top: 4px;
233
- width: 240px;
234
- float:left;
235
- border: 3px solid gray;
236
- box-shadow: 1px 1px 11px -5px black;
237
- }
238
  #ad_fsmi_2
239
  {
240
  background: url("images/lq.jpg") repeat scroll 0 0 transparent;
@@ -259,20 +164,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,177 +210,225 @@ font-weight:normal;
303
  {
304
  font-family: sans-serif;
305
  font-size: 21px;
 
306
  }
307
- /* Comparison */
308
- #fsmi_landing_holder
309
  {
310
- margin-left: auto;
311
- margin-right: auto;
312
- margin-top: 10px;
313
- margin-bottom: 10px;
314
- width: 1006px;
315
  }
316
- #float_left_100
 
317
  {
318
- width:100%;
319
- float:left;
 
 
320
  }
321
- #fsmi_lp_compare .highlighted
322
  {
323
- background: none repeat scroll 0 0 azure;
324
- font-weight: bold;
 
 
 
 
 
325
  }
326
- #fsmi_lp_compare
327
  {
328
- border: 1px solid black;
329
- border-radius: 8px 8px 0 0;
330
- float: left;
331
- margin-left: 40px;
332
- margin-top: 25px;
333
- overflow: hidden;
334
- width: 923px;
335
  }
336
- #fsmi_lp_compare .row_1
337
  {
338
- float: left;
339
- width: 529px;
 
340
  }
341
- #fsmi_lp_compare .row_2
342
  {
343
- float: left;
344
- width:192px;
 
345
  }
346
- #fsmi_lp_compare .row_3
347
  {
348
- float: left;
349
- width: 202px;
 
 
 
 
350
  }
351
- #fsmi_lp_compare .fsmi_lp_compare_row_1_1
352
  {
353
- background-image: url("images/fsmi_lp_sprite.png");
354
- background-position: -10px -710px;
355
- border-bottom: 1px solid black;
356
- height: 152px;
357
- width: 529px;
 
 
 
 
 
358
  }
359
- #fsmi_lp_compare .fsmi_lp_compare_row_1_features
360
  {
361
- border-bottom: 1px solid lightgray;
362
- color: #414147;
363
- float: left;
364
  font-family: arial;
365
- font-size: 13px;
366
- height: 16px;
367
- padding: 8px;
368
- width: 319px;
369
  }
370
- #fsmi_lp_compare .fsmi_lp_compare_row_2_1
371
  {
372
- background-image: url("images/fsmi_lp_sprite.png");
373
- background-position: -10px -882px;
374
- float: left;
375
- height: 42px;
376
- width: 192px;
377
  }
378
- #fsmi_lp_compare .fsmi_lp_compare_row_2_2
379
  {
380
- background-image: url("images/fsmi_lp_sprite.png");
381
- background-position: -10px -944px;
382
- float: left;
383
- height: 111px;
384
- width: 191px;
385
  }
386
- #fsmi_lp_compare .row_2_border
387
  {
388
- border-left: 1px solid black;
389
- float: left;
390
- width: 192px;
391
- min-height: 1562px;
 
 
392
  }
393
- #fsmi_lp_compare .fsmi_lp_compare_row_3_1
394
  {
395
- background-image: url("images/fsmi_lp_sprite.png");
396
- background-position: -10px -1075px;
397
- float: left;
398
- height: 17px;
399
- width: 202px;
400
  }
401
- #fsmi_lp_compare .row_3_shadow
402
  {
403
- border-left: 1px solid black;
404
- border-top: 1px solid black;
405
- box-shadow: -2px -2px 10px -2px black;
406
- float: left;
407
- width: 201px;
408
- min-height: 1586px;
409
  }
410
- #fsmi_lp_compare .fsmi_lp_compare_row_3_2
411
  {
412
- background-image: url("images/fsmi_lp_sprite.png");
413
- background-position: -10px -1113px;
414
- float: left;
415
- height: 135px;
416
- width: 201px;
417
  }
418
- #fsmi_lp_compare .y
419
  {
420
- background-color: #f3fdee;
421
- background-image: url("images/fsmi_lp_sprite.png");
422
- background-position: 75.4333px -1323px;
423
- border-bottom: 1px solid lightgray;
424
  float: left;
425
- height: 32px;
426
- width: 100%;
427
  }
428
- #fsmi_lp_compare .n
429
  {
430
- background-color: #FEF1F3;
431
- background-image: url("images/fsmi_lp_sprite.png");
432
- background-position: 74.9667px -1287px;
433
- border-bottom: 1px solid lightgray;
434
- float: left;
435
- height: 32px;
436
- width: 100%;
 
437
  }
438
- #fsmi_lp_shadow
439
  {
440
- background-image: url("images/fsmi_lp_sprite.png");
441
- background-position: 123.5px -667px;
442
- background-repeat: no-repeat;
443
- float: left;
444
- height: 24px;
445
- width: 100%;
446
- opacity: 0.7;
447
  }
448
- #fsmi_lp_f_group
449
  {
450
- float: left;
451
- width: 529px;
 
 
 
 
 
 
 
 
452
  }
453
- #fsmi_lp_f_group .left
454
  {
455
- border-bottom: 1px solid lightgray;
456
- border-right: 1px solid lightgray;
457
- color: #414147;
458
- float: left;
459
  font-family: arial;
460
- font-size: 14px;
461
- font-weight: bold;
462
- padding-left: 10px;
463
- width: 183px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  }
465
- #fsmi_lp_f_group .right
 
 
 
 
 
 
 
 
 
 
 
 
 
 
466
  {
467
  float: left;
468
- width: 335px;
 
 
469
  }
470
- /* Comparison Ends Here */
471
- #acx_td
472
  {
473
- font-size: 14px !important;
474
- line-height: 27px !important;
475
- text-align: center;
476
  }
 
 
477
  #acx_td p .button
478
  {
479
  border: 1px solid lightgray;
@@ -484,4 +439,146 @@ float:left;
484
  #acx_td p .button:hover
485
  {
486
  background: azure;
487
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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;
44
  font-size: 12px;
45
  margin-left: auto;
46
  margin-right: auto;
47
+ max-height: 520px;
48
  overflow-y: scroll;
49
  padding: 5px 7px 10px;
50
  text-shadow: 0 0 1px #F7F7F7;
58
  margin-bottom: 8px;
59
  margin-left: 7px;
60
  padding: 2px;
61
+ width: 345px;
62
  }
63
  #acx_widget_si_theme_display .acx_widget_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
  #ad_fsmi_2
144
  {
145
  background: url("images/lq.jpg") repeat scroll 0 0 transparent;
164
  }
165
  #ad_fsmi_2_button_order
166
  {
167
+ background: url("images/button.jpg") no-repeat scroll center 0 #FFFFFF;
168
+ cursor: pointer;
169
+ display: block;
170
+ height: 115px;
171
+ margin-left: auto;
172
+ margin-right: auto;
173
+ width: 283px;
174
  }
175
  #ad_fsmi_2_button_order_link
176
  {
177
+ cursor: pointer;
178
+ display: block;
179
+ height: 115px;
180
+ margin-left: auto;
181
+ margin-right: auto;
182
+ width: 283px;
183
  }
184
  #ad_fsmi_2_button_payments
185
  {
210
  {
211
  font-family: sans-serif;
212
  font-size: 21px;
213
+ text-decoration: none;
214
  }
215
+ #acx_td
 
216
  {
217
+ font-size: 14px !important;
218
+ line-height: 27px !important;
219
+ text-align: center;
 
 
220
  }
221
+ /* Comparison 2014 Starts Here */
222
+ #ss_middle_wrapper
223
  {
224
+ background: none repeat scroll 0 0 #D5D5D5;
225
+ border-top: 1px solid #29A2DF;
226
+ min-height: 500px;
227
+ width: 100%;
228
  }
229
+ #ss_middle_wrapper h2
230
  {
231
+ color: #000000;
232
+ font-family: 'agency_fbbold';
233
+ font-size: 52px;
234
+ font-weight: normal;
235
+ margin: 0;
236
+ line-height: 1;
237
+ text-transform: uppercase;
238
  }
239
+ #ss_middle_wrapper h3
240
  {
241
+ line-height: 1;
242
+ color: #29a2df;
243
+ font-family: 'agency_fbbold';
244
+ font-size: 26px;
245
+ font-weight: normal;
246
+ margin: 0;
247
+ text-transform: uppercase;
248
  }
249
+ #ss_middle_center
250
  {
251
+ background: #ececec;
252
+ margin: 0 auto;
253
+ width: 1006px;
254
  }
255
+ #ss_middle_inline_block
256
  {
257
+ display: inline-block;
258
+ padding: 33px;
259
+ width: 940px;
260
  }
261
+ .middle_h2_1
262
  {
263
+ background: url("images/girl.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
264
+ height: 149px;
265
+ padding-left: 154px;
266
+ padding-top: 53px;
267
+ width: 786px;
268
+ float: left;
269
  }
270
+ #ss_features_table
271
  {
272
+ background: url("images/ss_table_footer.png") no-repeat scroll center bottom rgba(0, 0, 0, 0);
273
+ float: left;
274
+ margin: -62px 0 0;
275
+ width: 940px;
276
+ }
277
+ #ss_table_header
278
+ {
279
+ width: 940px;
280
+ float: left;
281
+ height: 118px;
282
  }
283
+ #ss_table_header h3
284
  {
285
+ color: #FFFFFF;
 
 
286
  font-family: arial;
287
+ font-size: 14px;
288
+ font-weight: bolder;
289
+ line-height: 1;
290
+ text-align: center;
291
  }
292
+ .tb_h1
293
  {
294
+ background: url("images/table_head_1.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
295
+ padding: 21px 0;
296
+ width: 178px;
297
+ float: left;
298
+ margin: 62px 0 0;
299
  }
300
+ .tb_h2
301
  {
302
+ background: url("images/table_head_2.jpg") no-repeat scroll left 0 rgba(0, 0, 0, 0);
303
+ padding: 21px 0;
304
+ width: 340px;
305
+ float: left;
306
+ margin: 62px 0 0;
307
  }
308
+ .tb_h3
309
  {
310
+ background: url("images/table_head_3.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
311
+ width: 211px;
312
+ height: 88px;
313
+ float: left;
314
+ margin: 30px 0 0;
315
+ position: relative;
316
  }
317
+ .ss_download
318
  {
319
+ height: 32px;
320
+ left: 94px;
321
+ position: absolute;
322
+ top: 44px;
323
+ width: 102px;
324
  }
325
+ .tb_h4
326
  {
327
+ background: url("images/table_head_4.png") no-repeat scroll left 0 rgba(0, 0, 0, 0);
328
+ width: 211px;
329
+ height: 118px;
330
+ float: left;
331
+ position: relative;
 
332
  }
333
+ .ss_buy_now
334
  {
335
+ height: 65px;
336
+ left: 2px;
337
+ position: absolute;
338
+ top: 51px;
339
+ width: 207px;
340
  }
341
+ .ss_column_holder
342
  {
343
+ background: none repeat scroll 0 0 #FFFFFF;
344
+ border-bottom: 1px solid #E6E6E6;
 
 
345
  float: left;
346
+ width: 940px;
 
347
  }
348
+ .ss_feature_group
349
  {
350
+ color: #33a9e1;
351
+ font-family: arial;
352
+ font-size: 14px;
353
+ font-weight: bolder;
354
+ line-height: 1;
355
+ text-align: center;
356
+ float: left;
357
+ width: 176px;
358
  }
359
+ .ss_features
360
  {
361
+ border-left: 1px solid #E6E6E6;
362
+ color: #737373;
363
+ font-family: arial;
364
+ font-size: 12px;
365
+ line-height: 1;
366
+ float: left;
 
367
  }
368
+ .ss_features ul
369
  {
370
+ margin: 0;
371
+ padding: 0;
372
+ }
373
+ .ss_features ul li
374
+ {
375
+ border-bottom: 1px solid #E6E6E6;
376
+ list-style: none outside none;
377
+ padding: 13px;
378
+ width: 315px;
379
+ margin-bottom: 0;
380
  }
381
+ .ss_features ul li a
382
  {
383
+ color: #29A2DF;
384
+ float: right;
 
 
385
  font-family: arial;
386
+ font-size: 12px;
387
+ font-weight: normal;
388
+ text-decoration: none;
389
+ transition: all 0.3s ease 0s;
390
+ }
391
+ .ss_features ul li a:hover
392
+ {
393
+ color: #006496;
394
+ }
395
+ .ss_last_one
396
+ {
397
+ border: 0 none !important;
398
+ }
399
+ .ss_y_n_holder
400
+ {
401
+ border-left: 1px solid #E6E6E6;
402
+ float: left;
403
+ width: 210px;
404
  }
405
+ .ss_yes
406
+ {
407
+ background: url("images/ss_yes.png") no-repeat scroll center center rgba(0, 0, 0, 0);
408
+ border-bottom: 1px solid #E6E6E6;
409
+ height: 38px;
410
+ width: 210px;
411
+ }
412
+ .ss_no
413
+ {
414
+ background: url("images/ss_no.png") no-repeat scroll center center rgba(0, 0, 0, 0);
415
+ border-bottom: 1px solid #E6E6E6;
416
+ height: 38px;
417
+ width: 210px;
418
+ }
419
+ .order_now
420
  {
421
  float: left;
422
+ height: 105px;
423
+ margin: 28px 0 19px 323px;
424
+ width: 310px;
425
  }
426
+ .ss_column_holder .mini
 
427
  {
428
+ display:none;
 
 
429
  }
430
+
431
+ /* Comparison 2014 Ends Here */
432
  #acx_td p .button
433
  {
434
  border: 1px solid lightgray;
439
  #acx_td p .button:hover
440
  {
441
  background: azure;
442
+ }
443
+ #acx_trouble_ul
444
+ {
445
+ display: inline-block;
446
+ list-style: none outside none;
447
+ width: 100%;
448
+ }
449
+ #acx_trouble_ul li
450
+ {
451
+ background: url("images/tag.png") no-repeat scroll 6px center #F8F8FF;
452
+ border: 1px dashed #808080;
453
+ color: #006400;
454
+ float: left;
455
+ font-size: 13px;
456
+ list-style: none outside none;
457
+ margin-left: 2px;
458
+ margin-right: 2px;
459
+ padding: 5px;
460
+ text-indent: 24px;
461
+ text-transform: capitalize;
462
+ }
463
+ #acx_trouble_ul li a
464
+ {
465
+ text-decoration:none !important;
466
+ color:#006400;
467
+ }
468
+ .acx_trouble_fixit
469
+ {
470
+ background: url("images/fix.png") no-repeat scroll 5px center #F0FFF0;
471
+ border-bottom: 1px solid #D3D3D3;
472
+ border-radius: 5px;
473
+ border-right: 1px solid #D3D3D3;
474
+ margin-left: 10px;
475
+ padding: 4px 10px 4px 28px;
476
+ }
477
+ /* Starting CSS for Quick Request Form */
478
+ #acx_quick_request_form
479
+ {
480
+ background: none repeat scroll 0 0 #AFEEEE;
481
+ border-radius: 5px;
482
+ border-top: 3px solid #6495ED;
483
+ height: 390px;
484
+ margin-left: auto;
485
+ margin-right: auto;
486
+ padding: 10px;
487
+ width: 350px;
488
+ }
489
+ #acx_quick_request_form input
490
+ {
491
+ border: 1px solid #20B2AA;
492
+ width: 245px;
493
+ }
494
+ #acx_quick_request_form textarea
495
+ {
496
+ border: 1px solid #20B2AA;
497
+ width: 245px;
498
+ height:100px;
499
+ }
500
+ #acx_quick_request_form .acx_qr_label
501
+ {
502
+ float: left;
503
+ font-family: arial;
504
+ min-width: 90px;
505
+ padding-right: 10px;
506
+ padding-top: 6px;
507
+ margin-bottom:5px;
508
+ }
509
+ #acx_quick_request_form .acx_qr_field
510
+ {
511
+ float: left;
512
+ margin-bottom:5px;
513
+ }
514
+ #acx_quick_request_form span
515
+ {
516
+ color:red;
517
+ }
518
+ #acx_quick_request_form h2
519
+ {
520
+ font-family: arial;
521
+ font-size: 20px;
522
+ line-height: 28px;
523
+ margin: 0 0 14px;
524
+ text-align: center;
525
+ text-transform: capitalize;
526
+ }
527
+ /* Ending CSS for Quick Request Form */
528
+ /* Starting Ad Banner Code */
529
+ #acx_ad_banners_fsmi
530
+ {
531
+ height: 80px;
532
+ margin-top: 10px;
533
+ width: 100%;
534
+ }
535
+ #acx_ad_banners_fsmi .acx_ad_fsmi_1
536
+ {
537
+ border: 1px solid #E6E6FA;
538
+ border-radius: 7px;
539
+ float: left;
540
+ margin-left: 8px;
541
+ overflow: hidden;
542
+ width: 260px;
543
+ height:auto;
544
+ display:block;
545
+ }
546
+ #acx_ad_banners_fsmi .acx_ad_fsmi_title
547
+ {
548
+ background: none repeat scroll 0 0 #696969;
549
+ border-bottom: 1px dashed #D3D3D3;
550
+ color: #FFFFFF;
551
+ float: left;
552
+ font-family: 'Raleway',sans-serif;
553
+ font-size: 16px;
554
+ font-weight: normal;
555
+ opacity: 0.8;
556
+ padding-bottom: 6px;
557
+ padding-top: 6px;
558
+ text-align: center;
559
+ width: 100%;
560
+ }
561
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc
562
+ {
563
+ background: url("images/wp.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
564
+ float: left;
565
+ font-family: Courgette;
566
+ height: 31px;
567
+ padding-left: 42px;
568
+ padding-top: 12px;
569
+ text-transform: capitalize;
570
+ width: 213px;
571
+ }
572
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc2
573
+ {
574
+ background: url("images/des.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
575
+ }
576
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc3
577
+ {
578
+ background: url("images/plug.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
579
+ }
580
+ #acx_ad_banners_fsmi .acx_ad_fsmi_desc4
581
+ {
582
+ background: url("images/quick.png") no-repeat scroll 5px center rgba(0, 0, 0, 0);
583
+ }
584
+ /* 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_widget_icon_array_order = array(0,1,2,3,4,5,6); // Number Of Services
9
+ $social_widget_icon_array_order = serialize($social_widget_icon_array_order);
10
+ update_option('social_widget_icon_array_order', $social_widget_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-Widget-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=asmw&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=asmw&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=asmw&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=asmw&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=asmw&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=asmw&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=asmw&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=asmw&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-Widget-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_widget_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-Widget-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_widget_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_widget_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>Social Media Widget by Acurax</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-Widget-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
+ ?>