Rich Text Tags - Version 1.7.1

Version Description

  • Fixed HTML "quick tags" button width
Download this release

Release Info

Developer katzwebdesign
Plugin Icon 128x128 Rich Text Tags
Version 1.7.1
Comparing to
See all releases

Code changes from version 1.7 to 1.7.1

Files changed (2) hide show
  1. readme.txt +7 -1
  2. rich-text-tags.php +11 -3
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&currency_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,6 +37,9 @@ Thanks, it's by <a href="http://www.flickr.com/photos/laurenmanning/5659535988/"
37
 
38
  == Upgrade Notice ==
39
 
 
 
 
40
  = 1.7 =
41
  * Added Media description support
42
 
@@ -97,6 +100,9 @@ Thanks, it's by <a href="http://www.flickr.com/photos/laurenmanning/5659535988/"
97
 
98
  == Changelog ==
99
 
 
 
 
100
  = 1.7 =
101
  * Added Media description support
102
 
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&currency_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.4.1
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.7.1 =
41
+ * Fixed HTML "quick tags" button width
42
+
43
  = 1.7 =
44
  * Added Media description support
45
 
100
 
101
  == Changelog ==
102
 
103
+ = 1.7.1 =
104
+ * Fixed HTML "quick tags" button width
105
+
106
  = 1.7 =
107
  * Added Media description support
108
 
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.7
8
  Author URI: http://www.katzwebservices.com
9
  */
10
 
@@ -120,6 +120,15 @@ function kws_rtt_get_css() {
120
  function kws_add_form($object = ''){
121
  global $pagenow;
122
 
 
 
 
 
 
 
 
 
 
123
  // This is a profile page
124
  if(is_a($object, 'WP_User')) {
125
  $content = html_entity_decode(get_user_meta($object->ID, 'description', true));
@@ -153,8 +162,7 @@ function kws_add_form($object = ''){
153
  <th scope="row" valign="top"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th>
154
  <td><?php wp_editor($content, $editor_id,
155
  array(
156
- 'textarea_name' => $editor_selector,
157
- 'editor_css' => $css,
158
  )); ?><br />
159
  <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td>
160
  </tr>
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.7.1
8
  Author URI: http://www.katzwebservices.com
9
  */
10
 
120
  function kws_add_form($object = ''){
121
  global $pagenow;
122
 
123
+ ?>
124
+
125
+ <style type="text/css">
126
+ .quicktags-toolbar input { width:auto!important; }
127
+ .wp-editor-area {border: none!important;}
128
+ </style>
129
+
130
+ <?php
131
+
132
  // This is a profile page
133
  if(is_a($object, 'WP_User')) {
134
  $content = html_entity_decode(get_user_meta($object->ID, 'description', true));
162
  <th scope="row" valign="top"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th>
163
  <td><?php wp_editor($content, $editor_id,
164
  array(
165
+ 'textarea_name' => $editor_selector
 
166
  )); ?><br />
167
  <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td>
168
  </tr>