• Resolved lullabyman

    (@lullabyman)


    “PrivateAccess” is a more accurate description, and it imbues a sense of exclusivity and importance to those who have access (which generally is a good thing). I changed this in wp-includes/post-template.php [line#129], but every time the plug-in updates it writes over my change.

    How do I make the change permanent? Is there a chance Brian Layman (the author) will make this change for us in his code?

    Thanks! David

    https://www.ads-software.com/plugins/smart-passworded-pages/

Viewing 1 replies (of 1 total)
  • Plugin Author Brian Layman

    (@brianlayman)

    Yeah you don’t have to do a core hack to fix this. It’s easy to add something to your themes function.php to change this.

    Try something along these lines:

    function renameProtected( $title, $post ) {
    return ‘PrivateAccess: %s’;
    }
    add_filter( ‘protected_title_format’, ‘renameProtected’ );

Viewing 1 replies (of 1 total)
  • The topic ‘How to permanently change the title "Protected:" to "PrivateAccess:"?’ is closed to new replies.