Skip to content

Commit

Permalink
commit v3.14.9
Browse files Browse the repository at this point in the history
* release date November 7, 2022
* hide "Connect Yoast SEO with Zapier"-text in post publish sidebar
* remove link to blog from plugin's settings page
  • Loading branch information
senlin committed Nov 7, 2022
1 parent 933740f commit d08ba45
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 15 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

[![plugin version](https://img.shields.io/wordpress/plugin/v/so-clean-up-wp-seo)](https://wordpress.org/plugins/so-clean-up-wp-seo) [![WP compatibility](https://plugintests.com/plugins/wporg/so-clean-up-wp-seo/wp-badge.svg)](https://plugintests.com/plugins/wporg/so-clean-up-wp-seo/latest) [![PHP compatibility](https://plugintests.com/plugins/so-clean-up-wp-seo/php-badge.svg)](https://plugintests.com/plugins/so-clean-up-wp-seo/latest)

###### Last updated on August 16, 2021
###### Development version 3.14.8
###### Last updated on November 7, 2022
###### Development version 3.14.9
###### requires at least WordPress 4.9
###### tested up to WordPress 5.8
###### tested up to WordPress 6.1
###### Author: [Pieter Bos](https://github.com/senlin)
###### Contributor: [Andy Fragen](https://github.com/afragen)

Expand All @@ -17,7 +17,7 @@ Almost anyone who uses the Yoast SEO plugin will agree that it is a good SEO plu

**New in this version:**

* include hiding "Workouts" submenu; fixes [issue #102](https://github.com/senlin/so-clean-up-wp-seo/issues/102)
* hide "Connect Yoast SEO with Zapier"-text in post publish sidebar

<hr>

Expand Down Expand Up @@ -111,8 +111,6 @@ We welcome your contributions very much! PR's will be considered and of course b

[SO WP Plugins](https://so-wp.com/)

[WP Tips](https://bohanintl.com/wptips/)

[Github](https://github.com/senlin)

[LinkedIn](https://www.linkedin.com/in/pieterbos83)
Expand All @@ -122,6 +120,12 @@ We welcome your contributions very much! PR's will be considered and of course b

## Changelog

### 3.14.9

* release date November 7, 2022
* hide "Connect Yoast SEO with Zapier"-text in post publish sidebar
* remove link to blog from plugin's settings page

### 3.14.8

* release date August 16, 2021
Expand Down
1 change: 0 additions & 1 deletion includes/class-so-clean-up-wp-seo-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,6 @@ public function settings_page() {
$html .= '<li><a href="https://www.linkedin.com/in/pieterbos83" target="_blank" title="LinkedIn profile">' . esc_attr( __( 'LinkedIn', 'so-clean-up-wp-seo' ) ) . '</a></li>' . "\n";
$html .= '<li><a href="https://so-wp.com" target="_blank" title="SO WP">' . esc_attr( __( 'SO WP', 'so-clean-up-wp-seo' ) ) . '</a></li>' . "\n";
$html .= '<li><a href="https://github.com/senlin" title="on Github">' . esc_attr( __( 'Github', 'so-clean-up-wp-seo' ) ) . '</a></li>' . "\n";
$html .= '<li><a href="https://bohanintl.com/wptips/" title="Useful WordPress Tips for people who like to DIY">' . esc_attr( __( 'WP Tips', 'so-clean-up-wp-seo' ) ) . '</a></li>' . "\n";
$html .= '<li><a href="https://profiles.wordpress.org/senlin/" title="on WordPress.org">' . esc_attr( __( 'WordPress.org Profile', 'so-clean-up-wp-seo' ) ) . '</a></li>' . "\n";
$html .= '</ul>' . "\n";

Expand Down
8 changes: 5 additions & 3 deletions includes/class-so-clean-up-wp-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class CUWS {
* @param string $file
* @param string $version Version number.
*/
public function __construct( $file = '', $version = '3.14.8' ) {
public function __construct( $file = '', $version = '3.14.9' ) {
$this->_version = $version;
$this->_token = 'cuws';

Expand Down Expand Up @@ -476,9 +476,11 @@ public function so_cuws_hide_visibility_css() {
if ( ! empty( $this->options['hide_content_keyword_score'] ) ) {
echo '
#misc-publishing-actions #content-score,
#misc-publishing-actions #keyword-score
#misc-publishing-actions #keyword-score,
#misc-publishing-actions .yoast-zapier-text
{display:none;}
'; // @since v3.10.0 hide "Content / Keyword Score" from Publish/Update metabox
// @since v3.14.9 hide "Connect Yoast SEO with Zapier" text from Publish/Update metabox
}

// hide Premium ad after deleting content (post, page, wc product, cpt)
Expand Down Expand Up @@ -529,7 +531,7 @@ function i18n() {
*
* @return CUWS $_instance
*/
public static function instance( $file = '', $version = '3.14.8' ) {
public static function instance( $file = '', $version = '3.14.9' ) {
if ( null === self::$_instance ) {
self::$_instance = new self( $file, $version );
}
Expand Down
12 changes: 9 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Donate link: https://so-wp.com/donations
Tags: hide, seo, bloat, remove, ads, cartoon, wordpress seo addon, admin columns, nags, dashboard widget, hide premium, classicpress
Requires at least: 4.9
Requires PHP: 5.6
Tested up to: 5.8
Stable tag: 3.14.8
Tested up to: 6.1
Stable tag: 3.14.9
License: GPL-3.0+
License URI: http://www.gnu.org/licenses/gpl-3.0.txt

Expand All @@ -17,7 +17,7 @@ Almost anyone who uses the Yoast SEO plugin will agree that it is a good SEO plu

**New in this version:**

* * include hiding "Workouts" submenu; fixes [issue #102](https://github.com/senlin/so-clean-up-wp-seo/issues/102)
* hide "Connect Yoast SEO with Zapier"-text in post publish sidebar

<hr>

Expand Down Expand Up @@ -111,6 +111,12 @@ Please open an issue on [Github](https://github.com/senlin/so-clean-up-wp-seo/is

== Changelog ==

= 3.14.9 =

* release date November 7, 2022
* hide "Connect Yoast SEO with Zapier"-text in post publish sidebar
* remove link to blog from plugin's settings page

= 3.14.8 =

* release date August 16, 2021
Expand Down
4 changes: 2 additions & 2 deletions so-clean-up-wp-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Hide SEO Bloat
* Plugin URI: https://so-wp.com/plugin/hide-seo-bloat
* Description: Hide most of the bloat that the Yoast SEO plugin adds to your WordPress Dashboard
* Version: 3.14.8
* Version: 3.14.9
* Author: SO WP
* Author URI: https://so-wp.com
* License: GPL-3.0+
Expand Down Expand Up @@ -34,7 +34,7 @@
* @return object CUWS
*/
function CUWS () {
$instance = CUWS::instance( __FILE__, '3.14.8' );
$instance = CUWS::instance( __FILE__, '3.14.9' );

if ( null === $instance->settings ) {
$instance->settings = CUWS_Settings::instance( $instance );
Expand Down

0 comments on commit d08ba45

Please sign in to comment.