Version Description
Download this release
Release Info
Developer | gn_themes |
Plugin | Shortcodes Ultimate |
Version | 5.9.5 |
Comparing to | |
See all releases |
Code changes from version 5.9.4 to 5.9.5
- changelog.txt +9 -0
- readme.txt +5 -8
- shortcodes-ultimate.php +5 -3
changelog.txt
CHANGED
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
### 5.9.3
|
2 |
|
3 |
**What's new**
|
1 |
+
### 5.9.4
|
2 |
+
|
3 |
+
**Fixes**
|
4 |
+
|
5 |
+
- Fixed PHP notice `A non-numeric value encountered` in `[su_dropcap]`
|
6 |
+
- Fixed PHP notice `A non-numeric value encountered` in `[su_service]`
|
7 |
+
- Updated in-plugin links
|
8 |
+
|
9 |
+
|
10 |
### 5.9.3
|
11 |
|
12 |
**What's new**
|
readme.txt
CHANGED
@@ -4,9 +4,9 @@ License: GPLv3
|
|
4 |
Donate link: https://paypal.me/anovladimir
|
5 |
Tags: shortcode, toggle, columns, button, slider
|
6 |
Requires at least: 4.6
|
7 |
-
Tested up to: 5.
|
8 |
Requires PHP: 5.3
|
9 |
-
Stable tag: 5.9.
|
10 |
|
11 |
A comprehensive collection of visual components for your site
|
12 |
|
@@ -146,13 +146,10 @@ First, visit the [Help Center](https://getshortcodes.com/support/). If you get s
|
|
146 |
## Changelog
|
147 |
|
148 |
|
149 |
-
### 5.9.
|
150 |
|
151 |
-
|
152 |
-
|
153 |
-
- Fixed PHP notice `A non-numeric value encountered` in `[su_dropcap]`
|
154 |
-
- Fixed PHP notice `A non-numeric value encountered` in `[su_service]`
|
155 |
-
- Updated in-plugin links
|
156 |
|
157 |
---
|
158 |
[Version history →](https://plugins.trac.wordpress.org/browser/shortcodes-ultimate/trunk/changelog.txt)
|
4 |
Donate link: https://paypal.me/anovladimir
|
5 |
Tags: shortcode, toggle, columns, button, slider
|
6 |
Requires at least: 4.6
|
7 |
+
Tested up to: 5.7
|
8 |
Requires PHP: 5.3
|
9 |
+
Stable tag: 5.9.5
|
10 |
|
11 |
A comprehensive collection of visual components for your site
|
12 |
|
146 |
## Changelog
|
147 |
|
148 |
|
149 |
+
### 5.9.5
|
150 |
|
151 |
+
Added compatiblity with WordPress 5.6
|
152 |
+
Minor improvements
|
|
|
|
|
|
|
153 |
|
154 |
---
|
155 |
[Version history →](https://plugins.trac.wordpress.org/browser/shortcodes-ultimate/trunk/changelog.txt)
|
shortcodes-ultimate.php
CHANGED
@@ -2,19 +2,21 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Shortcodes Ultimate
|
4 |
* Plugin URI: https://getshortcodes.com/
|
5 |
-
* Version: 5.9.
|
6 |
* Author: Vladimir Anokhin
|
7 |
-
* Author URI: https://
|
8 |
* Description: A comprehensive collection of visual components for WordPress
|
9 |
* Text Domain: shortcodes-ultimate
|
10 |
* License: GPLv3
|
|
|
|
|
11 |
*/
|
12 |
|
13 |
/**
|
14 |
* Define plugin constants.
|
15 |
*/
|
16 |
define( 'SU_PLUGIN_FILE', __FILE__ );
|
17 |
-
define( 'SU_PLUGIN_VERSION', '5.9.
|
18 |
|
19 |
/**
|
20 |
* Load dependencies.
|
2 |
/**
|
3 |
* Plugin Name: Shortcodes Ultimate
|
4 |
* Plugin URI: https://getshortcodes.com/
|
5 |
+
* Version: 5.9.5
|
6 |
* Author: Vladimir Anokhin
|
7 |
+
* Author URI: https://getshortcodes.com/
|
8 |
* Description: A comprehensive collection of visual components for WordPress
|
9 |
* Text Domain: shortcodes-ultimate
|
10 |
* License: GPLv3
|
11 |
+
* Requires at least: 5.3
|
12 |
+
* Requires PHP: 5.4
|
13 |
*/
|
14 |
|
15 |
/**
|
16 |
* Define plugin constants.
|
17 |
*/
|
18 |
define( 'SU_PLUGIN_FILE', __FILE__ );
|
19 |
+
define( 'SU_PLUGIN_VERSION', '5.9.5' );
|
20 |
|
21 |
/**
|
22 |
* Load dependencies.
|