Version Description
- Fixed bug that made the password fields disappear in Edit User & User Profile screens.
Download this release
Release Info
Developer | katzwebdesign |
Plugin | Rich Text Tags |
Version | 1.6.3 |
Comparing to | |
See all releases |
Code changes from version 1.6.1 to 1.6.3
- kws_rt_taxonomy.js +12 -0
- readme.txt +13 -1
- rich-text-tags.php +2 -2
kws_rt_taxonomy.js
CHANGED
@@ -20,7 +20,19 @@ jQuery(document).ready(function($) {
|
|
20 |
|
21 |
|
22 |
var profileTable = $('.user-edit-php .form-table, .profile-php .form-table').not('.rich-text-tags').has('textarea#description');
|
|
|
|
|
|
|
23 |
profileTable.prev('h3').insertBefore('table.rich-text-tags');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
profileTable.remove();
|
25 |
|
26 |
// Make sure you're saving the latest content
|
20 |
|
21 |
|
22 |
var profileTable = $('.user-edit-php .form-table, .profile-php .form-table').not('.rich-text-tags').has('textarea#description');
|
23 |
+
|
24 |
+
// We try to get things back to normal. There's no hook in WP to allow us to place the description where it's needed.
|
25 |
+
$('table.rich-text-tags').prev('h3').insertAfter('table.rich-text-tags');
|
26 |
profileTable.prev('h3').insertBefore('table.rich-text-tags');
|
27 |
+
|
28 |
+
// We add the fields that were in the table before to the new table.
|
29 |
+
$('tr', profileTable).each(function() {
|
30 |
+
if($('textarea#description', $(this)).length === 0) {
|
31 |
+
$(this).appendTo('table.rich-text-tags');
|
32 |
+
}
|
33 |
+
});
|
34 |
+
|
35 |
+
// Then we remove the old table.
|
36 |
profileTable.remove();
|
37 |
|
38 |
// Make sure you're saving the latest content
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: katzwebdesign
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=zackkatz%40gmail%2ecom&item_name=Rich%20Text%20Tags&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8
|
4 |
Tags: tag, tags, taxonomy, taxonomies, category, categories, category description, rich text category, editor, rich text, description, tag description, taxonomy description, rich text, wysiwyg, tinyMCE, SEO, search engine optimization, terms, bio, biography, user, user data, user description
|
5 |
Requires at least: 3.3
|
6 |
-
Tested up to: 3.3.
|
7 |
Stable tag: trunk
|
8 |
|
9 |
The Rich Text Tags Plugin allows you to edit tag, category, and taxonomy descriptions using Wordpress' built in WYSIWYG editor.
|
@@ -37,6 +37,12 @@ Thanks, it's by <a href="http://www.flickr.com/photos/laurenmanning/5659535988/"
|
|
37 |
|
38 |
== Upgrade Notice ==
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
= 1.6.1 =
|
41 |
* Fixed issue with filters stripping tags.
|
42 |
|
@@ -88,6 +94,12 @@ Thanks, it's by <a href="http://www.flickr.com/photos/laurenmanning/5659535988/"
|
|
88 |
|
89 |
== Changelog ==
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
= 1.6.1 =
|
92 |
* Fixed issue with filters stripping tags.
|
93 |
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=zackkatz%40gmail%2ecom&item_name=Rich%20Text%20Tags&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8
|
4 |
Tags: tag, tags, taxonomy, taxonomies, category, categories, category description, rich text category, editor, rich text, description, tag description, taxonomy description, rich text, wysiwyg, tinyMCE, SEO, search engine optimization, terms, bio, biography, user, user data, user description
|
5 |
Requires at least: 3.3
|
6 |
+
Tested up to: 3.3.2
|
7 |
Stable tag: trunk
|
8 |
|
9 |
The Rich Text Tags Plugin allows you to edit tag, category, and taxonomy descriptions using Wordpress' built in WYSIWYG editor.
|
37 |
|
38 |
== Upgrade Notice ==
|
39 |
|
40 |
+
= 1.6.3 =
|
41 |
+
* Fixed bug that made the password fields disappear in Edit User & User Profile screens.
|
42 |
+
|
43 |
+
= 1.6.2 =
|
44 |
+
* Made plugin load even later to allow for more custom taxonomies.
|
45 |
+
|
46 |
= 1.6.1 =
|
47 |
* Fixed issue with filters stripping tags.
|
48 |
|
94 |
|
95 |
== Changelog ==
|
96 |
|
97 |
+
= 1.6.3 =
|
98 |
+
* Fixed bug that made the password fields disappear in Edit User & User Profile screens.
|
99 |
+
|
100 |
+
= 1.6.2 =
|
101 |
+
* Made plugin load even later to allow for more custom taxonomies.
|
102 |
+
|
103 |
= 1.6.1 =
|
104 |
* Fixed issue with filters stripping tags.
|
105 |
|
rich-text-tags.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Rich Text Tags, Categories, and Taxonomies
|
|
4 |
Plugin URI: http://www.seodenver.com/rich-text-tags/
|
5 |
Description: This plugin offers rich text editing capabilities for descriptions of tags, categories, and taxonomies.
|
6 |
Author: Katz Web Services, Inc.
|
7 |
-
Version: 1.6.
|
8 |
Author URI: http://www.katzwebservices.com
|
9 |
*/
|
10 |
|
@@ -26,7 +26,7 @@ Author URI: http://www.katzwebservices.com
|
|
26 |
*/
|
27 |
|
28 |
|
29 |
-
add_action('init', 'kws_rich_text_tags',
|
30 |
function kws_rich_text_tags() {
|
31 |
|
32 |
global $wpdb, $user, $current_user, $pagenow, $wp_version;
|
4 |
Plugin URI: http://www.seodenver.com/rich-text-tags/
|
5 |
Description: This plugin offers rich text editing capabilities for descriptions of tags, categories, and taxonomies.
|
6 |
Author: Katz Web Services, Inc.
|
7 |
+
Version: 1.6.3
|
8 |
Author URI: http://www.katzwebservices.com
|
9 |
*/
|
10 |
|
26 |
*/
|
27 |
|
28 |
|
29 |
+
add_action('init', 'kws_rich_text_tags', 9999);
|
30 |
function kws_rich_text_tags() {
|
31 |
|
32 |
global $wpdb, $user, $current_user, $pagenow, $wp_version;
|