Plugin Directory

Changeset 2506904


Ignore:
Timestamp:
03/31/2021 06:15:32 PM (5 years ago)
Author:
ced1870
Message:

2.2.12

Location:
tooltip-ck/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tooltip-ck/trunk/includes/class.front.php

    r2489716 r2506904  
    2121        add_action('wp_footer', array( $this, 'load_inline_css'));
    2222        add_action('wp_enqueue_scripts', array( $this, 'load_assets_files'));
    23 //      add_action('wp', array( $this, 'do_my_ob_start') );
     23        $isDivi = isset($_REQUEST['page']) && $_REQUEST['page'] === 'et_theme_builder';
     24        if (! $isDivi) add_action('wp', array( $this, 'do_my_ob_start') );
    2425//      add_action('template_redirect',array( $this, 'do_my_ob_start') );
    2526        add_filter('the_content', array( $this, 'search_key' ), 0 );
  • tooltip-ck/trunk/readme.txt

    r2489716 r2506904  
    44Requires at least: 4.5
    55Tested up to: 5.6
    6 Stable tag: 2.2.11
     6Stable tag: 2.2.12
    77License: GPLv2 or later
    88
     
    4545
    4646== Changelog ==
     47
     48= 2.2.12 - 31 march 2021 =
     49* Fix issue with 2.2.11 version
    4750
    4851= 2.2.11 - 08 march 2021 =
  • tooltip-ck/trunk/tooltip-ck.php

    r2489716 r2506904  
    44 * Plugin URI: https://www.ceikay.com/plugins/tooltip-ck
    55 * Description: Tooltip CK allows you to put some nice tooltip effects into your content. Example : {tooltip}Text to hover{end-text}a friendly little boy{end-tooltip}
    6  * Version: 2.2.11
     6 * Version: 2.2.12
    77 * Author: Cédric KEIFLIN
    88 * Author URI: https://www.ceikay.com
     
    1616
    1717if (! defined('CK_LOADED')) define('CK_LOADED', 1);
    18 if (! defined('TOOLTIPCK_VERSION')) define('TOOLTIPCK_VERSION', '2.2.11');
     18if (! defined('TOOLTIPCK_VERSION')) define('TOOLTIPCK_VERSION', '2.2.12');
    1919if (! defined('TOOLTIPCK_PLATFORM')) define('TOOLTIPCK_PLATFORM', 'wordpress');
    2020if (! defined('TOOLTIPCK_PATH')) define('TOOLTIPCK_PATH', dirname(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.