-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New SEO Column on Posts Page #23
Labels
Comments
Hi @soaro77 |
senlin
pushed a commit
that referenced
this issue
Mar 25, 2017
* release date 2017.3.24 * add option to hide Readability column on Posts/Pages screens * update hide email support (see 2.5.5), all tabs have a different class, so need more CSS rules to hide them * update robots nag * reintroduce the setting to hide the tagline nag, which was removed in 2.1.1 * modify hide add keyword button in edit Post/Page screens to give remaining tab enough width to show entire text "Enter your focus keyword" * clarify text Content (Readability)/Keyword (SEO) Score * edit setting admin columns from 4 to 2 (SEO score and Readability score) and make it radio button option instead of checkboxes; thanks to [Curtis](https://github.com/soaro77) for [bringing it to our attention](#23) * remove hide about nag as it no longer is a site-wide nag * update readme.txt
Just released the new version that addresses this issue and a bunch of others. Thanks again for your input, Curtis! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It appears Yoast has added a new column called Readability to the posts page. I modified the source in my site to get rid of it but thought you might also be interested in the modification I made. I didn't know if you had developers for the code or if anyone could so I'm posting this as an issue. It probably should be added as a separate item in the settings but I just wanted it gone.
In the page, so-clean-up-wp-seo/includes/class-so-clean-up-wp-seo.php at current line 230 under comment // all columns I replaced the line with this:
echo '.column-wpseo-score,.column-wpseo_score,.column-wpseo-score-readability,.column-wpseo-title,.column-wpseo-metadesc,.column-wpseo-focuskw{display:none;}'; // @SInCE v2.0.0 remove seo columns one by one
Then after line 235 under comment // seo score column I added this line:
echo '.column-wpseo-score-readability{display:none;}'; // @SInCE v2.0.0 remove seo columns one by one
The text was updated successfully, but these errors were encountered: