Clash with Public Post Preview Plugin
-
We use Public Post Preview so we can share draft post with contributors that are not very tech savvy. Public Post Preview stopped working when we activated Temporary Login Without Password.
We have used Temporary Login Without Password with FlyingPress support – so have now deactivated Temporary Login Without Password.
I’m guessing its a conflict with the NONCE magic. Just thought you might like to know about the clash.
We also use a snippet to extend the default 48hr time with Public Post Preview to 7 days
add_filter( ‘ppp_nonce_life’, ‘my_nonce_life’ );
function my_nonce_life() {
return 60 * 60 * 24 * 7; // 7 days
}
The topic ‘Clash with Public Post Preview Plugin’ is closed to new replies.