Plugin Directory

Changeset 3377483


Ignore:
Timestamp:
10/13/2025 11:50:24 AM (6 months ago)
Author:
themelooks
Message:

2.2.7

  • Fixed anchor tag nofollow, dofollow option not working issue
Location:
enteraddons
Files:
797 added
4 edited

Legend:

Unmodified
Added
Removed
  • enteraddons/trunk/classes/Helper.php

    r3063156 r3377483  
    7575                $target = '_blank';
    7676            }
    77 
    78             return '<a class="'.esc_attr($class).'" href="'.esc_url( $url['url'] ).'" target="'.esc_attr( $target ).'">'.self::allowFormattingTagHtml( $innerData ).'</a>';
     77           
     78            //
     79            $addNofollow = '';
     80
     81            if( !empty( $url['nofollow'] ) ) {
     82                $addNofollow = 'rel="nofollow"';
     83            }
     84
     85            return '<a class="'.esc_attr($class).'" href="'.esc_url( $url['url'] ).'" '. $addNofollow.' target="'.esc_attr( $target ).'">'.self::allowFormattingTagHtml( $innerData ).'</a>';
    7986        }
    8087    }
  • enteraddons/trunk/enteraddons.php

    r3371116 r3377483  
    44 * Plugin URI:        https://themelooks.org/demo/enteraddons
    55 * Description:       Ultimate Template Builder for Elementor
    6  * Version:           2.2.6
     6 * Version:           2.2.7
    77 * Author:            ThemeLooks
    88 * Author URI:        https://themelooks.com
     
    2121// Version constant
    2222if (!defined('ENTERADDONS_VERSION')) {
    23     define('ENTERADDONS_VERSION', '2.2.6');
     23    define('ENTERADDONS_VERSION', '2.2.7');
    2424}
    2525// Current phpversion
  • enteraddons/trunk/readme.txt

    r3371116 r3377483  
    66Requires at least: 6.5
    77Tested up to: 6.8.3
    8 Version: 2.2.6
    9 Stable tag: 2.2.6
     8Version: 2.2.7
     9Stable tag: 2.2.7
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    162162== Change log ==
    163163
     164= 2.2.7 =
     165- Fixed anchor tag nofollow, dofollow option not working issue
     166
    164167= 2.2.6 =
    165168- Fixed infobox widget title style not working issue
  • enteraddons/trunk/widgets/horizontal_pricing_table/traits/Templates_Components.php

    r2837250 r3377483  
    127127    public static function button() {
    128128        $settings = self::getSettings();
    129 
    130129        $label     = !empty( $settings['button_label'] ) ?  $settings['button_label'] : esc_html__( 'Buy Now', 'enteraddons' );
    131130        echo \Enteraddons\Classes\Helper::getElementorLinkHandler( $settings['button_link'], $label, 'ea-h-pricing-btn');
Note: See TracChangeset for help on using the changeset viewer.