• The Notification Subscriptions and Editorial Metadata boxes are empty. Only the title shows up, but nothing shows up in the actual boxes.

    I installed this plugin locally and it doesn’t work there either. The Editorial Metadata does show up there, but the Notification Subscriptions box is still empty.

    Any help would be appreciated.

    Thank you!

    P.S. It would be great if we could turn on/off the Editorial Metadata box somewhere in the settings.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Daniel Bachhuber

    (@danielbachhuber)

    Hey Naz,
    Can you link to a screenshot of what you’re seeing? Also, what other plugins do you have installed on your website?

    Re: disabling Editorial Metadata, it’s possible to do so with custom post type support. Disabling Editorial Metadata for posts might look something like this:

    function db_remove_metadata_support() {
    	remove_post_type_support( 'post', 'ef_editorial_metadata' );
    }
    add_action( 'init', 'db_remove_metadata_support' );

    Cheers,

    Daniel

    Thread Starter Naz

    (@naz)

    Thanks for your help.

    I have a lot of plugins installed on my website, but I have installed this on a local, clean WordPress installation and it’s still giving me the same problem.
    I forgot to mention this, but the Notification Subscriptions box does show up for administrators, just not for other users (Contributors, etc).

    Disabling Editorial Metadata – Do I add this to the functions.php file?

    Plugin Contributor Scott Bressler

    (@sbressler)

    Yes, you would add that to your functions.php file.

    Thread Starter Naz

    (@naz)

    @daniel – Here’s the screenshot: https://img836.imageshack.us/img836/131/editflow1.jpg

    @sbressler – Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Edit Flow] Notification Subscriptions box empty’ is closed to new replies.