Version Description
(2019-07-10) = * Fixed compatibility issue with WP Page Widget plugin
Download this release
Release Info
Developer | marcochiesi |
Plugin | Black Studio TinyMCE Widget |
Version | 2.6.9 |
Comparing to | |
See all releases |
Code changes from version 2.6.8 to 2.6.9
black-studio-tinymce-widget.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
Plugin Name: Black Studio TinyMCE Widget
|
4 |
Plugin URI: https://wordpress.org/plugins/black-studio-tinymce-widget/
|
5 |
Description: Adds a new "Visual Editor" widget type based on the native WordPress TinyMCE editor.
|
6 |
-
Version: 2.6.
|
7 |
Author: Black Studio
|
8 |
Author URI: https://www.blackstudio.it
|
9 |
Requires at least: 3.1
|
10 |
-
Tested up to: 5.
|
11 |
License: GPLv3
|
12 |
Text Domain: black-studio-tinymce-widget
|
13 |
Domain Path: /languages
|
@@ -35,7 +35,7 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Plugin' ) ) {
|
|
35 |
* @var string
|
36 |
* @since 2.0.0
|
37 |
*/
|
38 |
-
public static $version = '2.6.
|
39 |
|
40 |
/**
|
41 |
* The single instance of the plugin class
|
3 |
Plugin Name: Black Studio TinyMCE Widget
|
4 |
Plugin URI: https://wordpress.org/plugins/black-studio-tinymce-widget/
|
5 |
Description: Adds a new "Visual Editor" widget type based on the native WordPress TinyMCE editor.
|
6 |
+
Version: 2.6.9
|
7 |
Author: Black Studio
|
8 |
Author URI: https://www.blackstudio.it
|
9 |
Requires at least: 3.1
|
10 |
+
Tested up to: 5.2
|
11 |
License: GPLv3
|
12 |
Text Domain: black-studio-tinymce-widget
|
13 |
Domain Path: /languages
|
35 |
* @var string
|
36 |
* @since 2.0.0
|
37 |
*/
|
38 |
+
public static $version = '2.6.9';
|
39 |
|
40 |
/**
|
41 |
* The single instance of the plugin class
|
includes/class-compatibility-plugins.php
CHANGED
@@ -350,6 +350,7 @@ if ( ! class_exists( 'Black_Studio_TinyMCE_Compatibility_Plugins' ) ) {
|
|
350 |
* @since 2.0.0
|
351 |
*/
|
352 |
public function wp_page_widget_enqueue_script() {
|
|
|
353 |
$main_script = apply_filters( 'black-studio-tinymce-widget-script', 'black-studio-tinymce-widget' );
|
354 |
$compat_script = 'wp-page-widget';
|
355 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
350 |
* @since 2.0.0
|
351 |
*/
|
352 |
public function wp_page_widget_enqueue_script() {
|
353 |
+
if ( ! bstw()->admin()->enabled() ) return;
|
354 |
$main_script = apply_filters( 'black-studio-tinymce-widget-script', 'black-studio-tinymce-widget' );
|
355 |
$compat_script = 'wp-page-widget';
|
356 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: black-studio, marcochiesi, thedarkmist
|
|
3 |
Donate link: https://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce-widget/
|
4 |
Tags: widget, visual, editor, wysiwyg, html, text, tinymce, image, media, gallery, embed, wpml
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 5.
|
7 |
Requires PHP: 5.2
|
8 |
-
Stable tag: 2.6.
|
9 |
License: GPLv3
|
10 |
License URI: https://www.gnu.org/licenses/gpl.html
|
11 |
|
@@ -212,6 +212,9 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
212 |
|
213 |
== Changelog ==
|
214 |
|
|
|
|
|
|
|
215 |
= 2.6.8 (2019-03-06) =
|
216 |
* Fixed compatibility issue with Elementor Page Builder
|
217 |
|
@@ -542,6 +545,6 @@ DELETE FROM wp_usermeta WHERE meta_key LIKE '_bstw%';
|
|
542 |
|
543 |
== Upgrade Notice ==
|
544 |
|
545 |
-
= 2.6.
|
546 |
If you're using WPML, double check our FAQ, as version 2.6 introduced some changes regarding widgets translations.
|
547 |
Important: Always ensure to backup your database before upgrading.
|
3 |
Donate link: https://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce-widget/
|
4 |
Tags: widget, visual, editor, wysiwyg, html, text, tinymce, image, media, gallery, embed, wpml
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 5.2
|
7 |
Requires PHP: 5.2
|
8 |
+
Stable tag: 2.6.9
|
9 |
License: GPLv3
|
10 |
License URI: https://www.gnu.org/licenses/gpl.html
|
11 |
|
212 |
|
213 |
== Changelog ==
|
214 |
|
215 |
+
= 2.6.9 (2019-07-10) =
|
216 |
+
* Fixed compatibility issue with WP Page Widget plugin
|
217 |
+
|
218 |
= 2.6.8 (2019-03-06) =
|
219 |
* Fixed compatibility issue with Elementor Page Builder
|
220 |
|
545 |
|
546 |
== Upgrade Notice ==
|
547 |
|
548 |
+
= 2.6.9 =
|
549 |
If you're using WPML, double check our FAQ, as version 2.6 introduced some changes regarding widgets translations.
|
550 |
Important: Always ensure to backup your database before upgrading.
|