Viewing 4 replies - 1 through 4 (of 4 total)
  • @acon89,

    Such features are not part of the current code. I’ll look at the feasibility of adding this in the future.

    Temporarely this should work in functions.php

    //hides the personal options
    function hide_personal_options(){
    echo "\n" . '<script type="text/javascript">jQuery(document).ready(function($) {
    $(\'div#s2_authors\').hide();
    });
    </script>' . "\n";
    }
    add_action('admin_head','hide_personal_options');

    @schwarzpunkt,

    I think your script actually hides that section from users rather than what the OP was asking for which was to exclude an author for all subscribers rather than on a case by case personal preference basis.

    ups, you’re right.. didn’t read it correctly..

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Exclude Post by Author for all users’ is closed to new replies.