Changeset 2597683
- Timestamp:
- 09/12/2021 10:51:45 PM (5 years ago)
- Location:
- comment-tweaks/trunk
- Files:
-
- 5 edited
-
admin/css/comment-tweaks-admin.css (modified) (1 diff)
-
comment-tweaks.php (modified) (2 diffs)
-
includes/class-comment-tweaks.php (modified) (2 diffs)
-
public/css/comment-tweaks-public.css (modified) (1 diff)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
comment-tweaks/trunk/admin/css/comment-tweaks-admin.css
r2037272 r2597683 13 13 float: left; 14 14 } 15 #comment_tweaks_anchor { 16 scroll-margin-top: 48px; 17 } 15 18 -
comment-tweaks/trunk/comment-tweaks.php
r2094791 r2597683 17 17 * Plugin URI: https://github.com/jnorell/comment-tweaks/ 18 18 * Description: Enhance Wordpress native comments (enables WP editor) 19 * Version: 1.1. 319 * Version: 1.1.4 20 20 * Author: Jesse Norell 21 21 * Author URI: https://github.com/jnorell/ … … 34 34 * Currently plugin version. 35 35 */ 36 define( 'COMMENT_TWEAKS_VERSION', '1.1. 3' );36 define( 'COMMENT_TWEAKS_VERSION', '1.1.4' ); 37 37 38 38 /** -
comment-tweaks/trunk/includes/class-comment-tweaks.php
r2094791 r2597683 191 191 192 192 // Currently not needed, so disabled for efficiency 193 //$this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );193 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' ); 194 194 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); 195 195 … … 334 334 */ 335 335 public static function add_option( $name, $value ) { 336 return Comment_Tweaks::update_option s( $name, $value );336 return Comment_Tweaks::update_option( $name, $value ); 337 337 } 338 338 -
comment-tweaks/trunk/public/css/comment-tweaks-public.css
r2023100 r2597683 3 3 * included in this file. 4 4 */ 5 6 /* Fix dark button background for twentytwentyone theme */ 7 .mce-container .mce-widget.mce-btn button:not(:hover):not(:active):not(.has-background) { 8 border-color: transparent; 9 background: 0 0; 10 background-image: initial; 11 background-position-x: 0px; 12 background-position-y: 0px; 13 background-size: initial; 14 background-repeat-x: initial; 15 background-repeat-y: initial; 16 background-attachment: initial; 17 background-origin: initial; 18 background-clip: initial; 19 background-color: initial; 20 } -
comment-tweaks/trunk/readme.txt
r2156214 r2597683 3 3 Tags: comments, editor 4 4 Requires at least: 4.8 5 Tested up to: 5. 2.35 Tested up to: 5.8.1 6 6 Stable tag: trunk 7 7 Requires PHP: 5.4 … … 124 124 == Changelog == 125 125 126 = 1.1.4 = 127 128 Release Date: Sep 12, 2021 129 130 * Fix: Typo 'update_option' function name. 131 * Fix: Editor buttons have dark background in twentytwentyone theme. 132 * Fix: Settings link top margin in chrome. 133 126 134 = 1.1.3 = 127 135 … … 136 144 Release Date: May 17, 2019 137 145 138 * Incompatibility: cannot add WP editor to comments on WP 5.1+ with threaded comments enabled.146 * Incompatibility: cannot add WP editor to comments on WP 5.1+ with threaded comments enabled. 139 147 140 148 = 1.1.1 = … … 149 157 Release Date: February 14, 2019 150 158 151 * Feature: Allow comment authors (logged in users) to edit their own comments (post author can not).159 * Feature: Allow comment authors (logged in users) to edit their own comments (post author can not). 152 160 * Improvement: Add functions to manage plugin options. 153 161 * Improvement: Add admin setting for whether to add wp_editor to comments.
Note: See TracChangeset
for help on using the changeset viewer.