Version Description
- Bugfix on widget display
Download this release
Release Info
Developer | marcochiesi |
Plugin | Black Studio TinyMCE Widget |
Version | 1.4.6 |
Comparing to | |
See all releases |
Code changes from version 1.4.5 to 1.4.6
- black-studio-tinymce-widget.php +2 -2
- readme.txt +4 -1
black-studio-tinymce-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Black Studio TinyMCE Widget
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/black-studio-tinymce-widget/
|
5 |
Description: Adds a WYSIWYG widget based on the standard TinyMCE WordPress visual editor.
|
6 |
-
Version: 1.4.
|
7 |
Author: Black Studio
|
8 |
Author URI: http://www.blackstudio.it
|
9 |
License: GPLv3
|
@@ -33,7 +33,7 @@ class WP_Widget_Black_Studio_TinyMCE extends WP_Widget {
|
|
33 |
$text = apply_filters( 'widget_text', $instance['text'], $instance );
|
34 |
if ( function_exists( 'icl_t' ) && ! empty( $this->number ) ) {
|
35 |
$title = icl_t( "Widgets", 'widget title - ' . md5 ( $title ), $title );
|
36 |
-
$text =
|
37 |
}
|
38 |
$text = do_shortcode( $text );
|
39 |
echo $before_widget;
|
3 |
Plugin Name: Black Studio TinyMCE Widget
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/black-studio-tinymce-widget/
|
5 |
Description: Adds a WYSIWYG widget based on the standard TinyMCE WordPress visual editor.
|
6 |
+
Version: 1.4.6
|
7 |
Author: Black Studio
|
8 |
Author URI: http://www.blackstudio.it
|
9 |
License: GPLv3
|
33 |
$text = apply_filters( 'widget_text', $instance['text'], $instance );
|
34 |
if ( function_exists( 'icl_t' ) && ! empty( $this->number ) ) {
|
35 |
$title = icl_t( "Widgets", 'widget title - ' . md5 ( $title ), $title );
|
36 |
+
$text = icl_t( "Widgets", 'widget body - ' . $this->id_base . '-' . $this->number, $text );
|
37 |
}
|
38 |
$text = do_shortcode( $text );
|
39 |
echo $before_widget;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.blackstudio.it/en/wordpress-plugins/black-studio-tinymce
|
|
4 |
Tags: wysiwyg, widget, tinymce, editor, image, media, rich text, rich text editor, visual editor, wysiwyg editor, tinymce editor, widget editor, html editor, wysiwyg widget, html widget, editor widget, text widget, rich text widget, enhanced text widget, tinymce widget, visual widget, image widget, media widget
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.0
|
7 |
-
Stable tag: 1.4.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl.html
|
10 |
|
@@ -111,6 +111,9 @@ add_filter( 'black_studio_tinymce_after_text', '__return_empty_string' );
|
|
111 |
|
112 |
== Changelog ==
|
113 |
|
|
|
|
|
|
|
114 |
= 1.4.5 =
|
115 |
* Fixed compatibility issue with Page Builder + WPML String Translation
|
116 |
|
4 |
Tags: wysiwyg, widget, tinymce, editor, image, media, rich text, rich text editor, visual editor, wysiwyg editor, tinymce editor, widget editor, html editor, wysiwyg widget, html widget, editor widget, text widget, rich text widget, enhanced text widget, tinymce widget, visual widget, image widget, media widget
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.0
|
7 |
+
Stable tag: 1.4.6
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl.html
|
10 |
|
111 |
|
112 |
== Changelog ==
|
113 |
|
114 |
+
= 1.4.6 =
|
115 |
+
* Bugfix on widget display
|
116 |
+
|
117 |
= 1.4.5 =
|
118 |
* Fixed compatibility issue with Page Builder + WPML String Translation
|
119 |
|