Changeset 2642998
- Timestamp:
- 12/12/2021 10:12:01 AM (4 years ago)
- Location:
- tooltip-ck/trunk
- Files:
-
- 3 edited
-
includes/class.front.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
tooltip-ck.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tooltip-ck/trunk/includes/class.front.php
r2535534 r2642998 121 121 122 122 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 123 127 $ID = (int) (microtime(true) * 100000); // unique ID 124 128 … … 184 188 185 189 function create_tooltip_css() { 190 if (! $this->fields) return ''; 191 186 192 $padding = $this->fields->getValue('padding') . 'px'; 187 193 $tipoffsetx = $this->fields->getValue('tipoffsetx') . 'px'; -
tooltip-ck/trunk/readme.txt
r2511574 r2642998 3 3 Tags: tooltip 4 4 Requires at least: 4.5 5 Tested up to: 5. 76 Stable tag: 2.2.1 45 Tested up to: 5.8 6 Stable tag: 2.2.15 7 7 License: GPLv2 or later 8 8 … … 45 45 46 46 == Changelog == 47 48 = 2.2.15 - 11 december 2021 = 49 * Fix issue with Divi edition when tooltip is added in the text 47 50 48 51 = 2.2.14 - 08 april 2021 = -
tooltip-ck/trunk/tooltip-ck.php
r2511574 r2642998 4 4 * Plugin URI: https://www.ceikay.com/plugins/tooltip-ck 5 5 * 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.1 46 * Version: 2.2.15 7 7 * Author: Cédric KEIFLIN 8 8 * Author URI: https://www.ceikay.com … … 16 16 17 17 if (! defined('CK_LOADED')) define('CK_LOADED', 1); 18 if (! defined('TOOLTIPCK_VERSION')) define('TOOLTIPCK_VERSION', '2.2.1 4');18 if (! defined('TOOLTIPCK_VERSION')) define('TOOLTIPCK_VERSION', '2.2.15'); 19 19 if (! defined('TOOLTIPCK_PLATFORM')) define('TOOLTIPCK_PLATFORM', 'wordpress'); 20 20 if (! defined('TOOLTIPCK_PATH')) define('TOOLTIPCK_PATH', dirname(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.