Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added the content of the "Enabling WProofreader for all WordPress administration panel fields" section.

...

If your website is running under WordPress 5.x with a new Gutenberg WYSIWYG editor, WProofreader will be adding orange badges to each editable section. It might be distracting or even annoying. Thus, we decided to add an option that allows you to disable the badge. To do so, select the Disable WProofreader Badge option and click Save Changes. The badge will be removed from the user interface, and all the action items (Settings, Turn on/off, Proofread in dialog) will be moved to the suggestion balloon/box.

Anchor
enableDisableProofreadingCertainCategories
enableDisableProofreadingCertainCategories
Enable or Disable Proofreading for the Particular Category

You can enable or disable proofreading for a particular content category in WordPress. To do so, select one or all available options listed below and click Save Changes

  • Check Posts
  • Check Pages
  • Check Categories 
  • Check Tags

Can be also useful:

...

Enabling WProofreader for all WordPress administration panel fields

If you want to enable WProofreader plugin for proofreading the content types other than categories mentioned in the Enable or Disable Proofreading for the Particular Category section above, you can add a special ‘wproofreader_add_cpt’ filter in your function.php script. 

Note

In the example A below, text proofreading is performed for a particular WordPress fields only while the example B shows how to enable proofreading for all administrative panel fields. Thus, you must choose and enable only one option at a time.

Option A. Enabling WProofreader for user-edit.php

When enabling the option for those fields available for edit by WordPress users, spelling and grammar check is supported for the particular fields only. To do so, navigate to your function.php and add the following code below:

Code Block
languagephp
themeEmacs
add_action( 'admin_enqueue_scripts', 'wsc_activate_bundle_in_admin_panel' );
function wsc_activate_bundle_in_admin_panel() {
   if ( class_exists( 'WProofreader' ) ) {
      $screen = get_current_screen();
      if ( 'user-edit' === $screen->id ) {
         $WProofreader = new WProofreader();
         $WProofreader->init_proofreader_js();
      }
   }
}

Option B. Enabling WProofreader for all options of  the whole admin panel

When enabling the option for all WPoofreader administrative panel, WProofreader performs spelling and grammar check for all available fields.  To do so, navigate to your function.php and add the following code below:

Code Block
languagephp
themeEmacs
add_action( 'admin_enqueue_scripts', 'wsc_activate_bundle_in_admin_panel' );
function wsc_activate_bundle_in_admin_panel() {
	if ( class_exists( 'WProofreader' ) ) {
		$WProofreader = new WProofreader();
		$WProofreader->init_proofreader_js();
	}
}