Skip to content

Commit

Permalink
commit v2.5.4
Browse files Browse the repository at this point in the history
* release date 2016.12.22 (triggered by release of Yoast SEO 4.0)
* fix: change robots nag hiding via settings instead of globally
* improvement: content analysis - hide readability tab
* improvement: upsell notice: hide entire notifications box
* add FAQ
  • Loading branch information
Piet Bos committed Dec 22, 2016
1 parent f0a8892 commit df05412
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@ The default settings of the current release are as follows:
* hide image warning nag that shows in edit Post/Page screen when featured image is smaller than 200x200 pixels
* hide add keyword button that shows in edit Post/Page and only serves to show an ad for the premium version
* hide content/seoscore in publish/update box on edit Post/Page
* hide readability tab and content analysis metabox item
* hide the issue counter (added to v3.3 of Yoast SEO plugin)
* hide the SEO Score, Title and Meta description admin columns on the Posts/Pages screens; Focus keyword column can be hidden too
* hide the SEO Score admin column on taxonomies (added to v3.1 of Yoast SEO plugin)
* hide the ad for the premium version in the help center or hide the whole help center (added to v3.2 of Yoast SEO plugin)
* hide the red star behind the "Go Premium" submenu text (added to v3.6 of Yoast plugin and changed again with v3.7)
* hide the Upsell Notice that shows in the Yoast SEO Dashboard
* hide the Upsell Notice & Notification box that show in the Yoast SEO Dashboard
* remove the Yoast SEO widget from the WordPress Dashboard

If you like the SO Hide SEO Bloat plugin, please consider leaving a [review](https://wordpress.org/support/view/plugin-reviews/so-clean-up-wp-seo?rate=5#postform). You can also help a great deal by [translating the plugin](https://translate.wordpress.org/projects/wp-plugins/so-clean-up-wp-seo) into your own language.
Expand Down Expand Up @@ -107,9 +108,10 @@ We welcome your contributions very much! PR's will be considered and of course b
### 2.5.4

* release date 2016.12.22 (triggered by release of Yoast SEO 4.0)
*
*
*
* fix: change robots nag hiding via settings instead of globally
* improvement: content analysis - hide readability tab
* improvement: upsell notice: hide entire notifications box
* add FAQ

### 2.5.3

Expand Down
4 changes: 2 additions & 2 deletions includes/class-so-clean-up-wp-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class CUWS {
*
* @return void
*/
public function __construct ( $file = '', $version = '2.5.3' ) {
public function __construct ( $file = '', $version = '2.5.4' ) {
$this->_version = $version;
$this->_token = 'cuws';

Expand Down Expand Up @@ -304,7 +304,7 @@ function i18n() {
*
* @return CUWS $_instance
*/
public static function instance( $file = '', $version = '2.5.3' ) {
public static function instance( $file = '', $version = '2.5.4' ) {
if ( null === self::$_instance ) {
self::$_instance = new self( $file, $version );
}
Expand Down
10 changes: 6 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,13 @@ The default settings of the current release are as follows:
* hide image warning nag that shows in edit Post/Page screen when featured image is smaller than 200x200 pixels
* hide add keyword button that shows in edit Post/Page and only serves to show an ad for the premium version
* hide content/seoscore in publish/update box on edit Post/Page
* hide readability tab and content analysis metabox item
* hide the issue counter (added to v3.3 of Yoast SEO plugin)
* hide the SEO Score, Title and Meta description admin columns on the Posts/Pages screens; Focus keyword column can be hidden too
* hide the SEO Score admin column on taxonomies (added to v3.1 of Yoast SEO plugin)
* hide the ad for the premium version in the help center or hide the whole help center (added to v3.2 of Yoast SEO plugin)
* hide the red star behind the "Go Premium" submenu text (added to v3.6 of Yoast plugin and changed again with v3.7)
* hide the Upsell Notice that shows in the Yoast SEO Dashboard
* hide the Upsell Notice & Notification box that show in the Yoast SEO Dashboard
* remove the Yoast SEO widget from the WordPress Dashboard

We support this plugin exclusively through [Github](https://github.com/senlin/so-clean-up-wp-seo/issues). Therefore, if you have any questions, need help and/or want to make a feature request, please open an issue over at Github. You can also browse through open and closed issues to find what you are looking for and perhaps even help others.
Expand Down Expand Up @@ -116,9 +117,10 @@ Please open an issue on [Github](https://github.com/senlin/so-clean-up-wp-seo/is
= 2.5.4 =

* release date 2016.12.22 (triggered by release of Yoast SEO 4.0)
*
*
*
* fix: change robots nag hiding via settings instead of globally
* improvement: content analysis - hide readability tab
* improvement: upsell notice: hide entire notifications box
* add FAQ

= 2.5.3 =

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: SO Hide SEO Bloat
* Plugin URI: https://so-wp.com/plugin/so-clean-up-wp-seo/
* Description: Hide most of the bloat that the Yoast SEO plugin adds to your WordPress Dashboard
* Version: 2.5.3
* Version: 2.5.4
* Author: SO WP
* Author URI: https://so-wp.com/plugins/
* Text Domain: so-clean-up-wp-seo
Expand All @@ -30,7 +30,7 @@
* @return object CUWS
*/
function CUWS () {
$instance = CUWS::instance( __FILE__, '2.5.3' );
$instance = CUWS::instance( __FILE__, '2.5.4' );

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

0 comments on commit df05412

Please sign in to comment.