Plugin Directory

Changeset 2642998


Ignore:
Timestamp:
12/12/2021 10:12:01 AM (4 years ago)
Author:
ced1870
Message:

2.2.15

Location:
tooltip-ck/trunk
Files:
3 edited

Legend:

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

    r2535534 r2642998  
    121121
    122122    function create_tooltip($matches) {
     123        $isDivi = isset($_REQUEST['et_fb']) && $_REQUEST['et_fb'] === '1';
     124        if (! $this->fields) return '';
     125        if ($isDivi) return $matches[0];
     126
    123127        $ID = (int) (microtime(true) * 100000); // unique ID
    124128
     
    184188
    185189    function create_tooltip_css() {
     190        if (! $this->fields) return '';
     191
    186192        $padding = $this->fields->getValue('padding') . 'px';
    187193        $tipoffsetx = $this->fields->getValue('tipoffsetx') . 'px';
  • tooltip-ck/trunk/readme.txt

    r2511574 r2642998  
    33Tags: tooltip
    44Requires at least: 4.5
    5 Tested up to: 5.7
    6 Stable tag: 2.2.14
     5Tested up to: 5.8
     6Stable tag: 2.2.15
    77License: GPLv2 or later
    88
     
    4545
    4646== Changelog ==
     47
     48= 2.2.15 - 11 december 2021 =
     49* Fix issue with Divi edition when tooltip is added in the text
    4750
    4851= 2.2.14 - 08 april 2021 =
  • tooltip-ck/trunk/tooltip-ck.php

    r2511574 r2642998  
    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.14
     6 * Version: 2.2.15
    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.14');
     18if (! defined('TOOLTIPCK_VERSION')) define('TOOLTIPCK_VERSION', '2.2.15');
    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.