Fuse Social Floating Sidebar - Version 5.4.5

Version Description

= 5.0 = Major update, you might need to set up the plugin settings again.

Download this release

Release Info

Developer daniyalahmedk
Plugin Icon 128x128 Fuse Social Floating Sidebar
Version 5.4.5
Comparing to
See all releases

Code changes from version 5.4.4 to 5.4.5

framework/settings/fuse-config.php CHANGED
@@ -579,13 +579,7 @@ Redux::setSection( $opt_name, array(
579
  'id' => 'relattr',
580
  'type' => 'switch',
581
  'title' => __( 'Relationship Attribute (nofollow)', 'fuse-social-floating' ),
582
- ),
583
- array(
584
- 'id' => 'arialabel',
585
- 'type' => 'switch',
586
- 'title' => __( 'Accessibility Label (aria-label)', 'fuse-social-floating' ),
587
- ),
588
-
589
  ),
590
  ) );
591
  Redux::setSection( $opt_name, array(
579
  'id' => 'relattr',
580
  'type' => 'switch',
581
  'title' => __( 'Relationship Attribute (nofollow)', 'fuse-social-floating' ),
582
+ )
 
 
 
 
 
 
583
  ),
584
  ) );
585
  Redux::setSection( $opt_name, array(
fuse_social_sidebar.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Fuse Social Floating Sidebar
4
  Plugin URI: https://www.fusefloat.com/
5
  Description: This Fuse Social Floating Sidebar plugin allow you to put social icons which can be link with your social media profiles.
6
- Version: 5.4.4
7
  Author: Daniyal Ahmed
8
  Author URI: https://www.fusefloat.com/
9
  License: GNU General Public License v3.0
3
  Plugin Name: Fuse Social Floating Sidebar
4
  Plugin URI: https://www.fusefloat.com/
5
  Description: This Fuse Social Floating Sidebar plugin allow you to put social icons which can be link with your social media profiles.
6
+ Version: 5.4.5
7
  Author: Daniyal Ahmed
8
  Author URI: https://www.fusefloat.com/
9
  License: GNU General Public License v3.0
inc/fuse_social_sidebar_func.php CHANGED
@@ -242,10 +242,12 @@ class Making_Fuse_Icons
242
  }
243
 
244
  $relattr = "";
245
- if ( $fuse_settings['relattr'] == 1 ) {
246
- $relattr = 'rel="nofollow"';
247
- } else {
248
- $relattr = "";
 
 
249
  }
250
 
251
 
242
  }
243
 
244
  $relattr = "";
245
+ if(!empty($fuse_settings['relattr'])){
246
+ if ( $fuse_settings['relattr'] == 1 ) {
247
+ $relattr = 'rel="nofollow"';
248
+ } else {
249
+ $relattr = "";
250
+ }
251
  }
252
 
253
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: daniyalahmedk, freemius
3
  Tags: social media, floating sidebar, social widget, social icons, animated social icons
4
  Requires at least: 3.0
5
  Tested up to: 6.1
6
- Stable tag: 5.4.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
3
  Tags: social media, floating sidebar, social widget, social icons, animated social icons
4
  Requires at least: 3.0
5
  Tested up to: 6.1
6
+ Stable tag: 5.4.5
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9