Hi Nitesh,
can you show us URL of published post and tell us what slug you want to define for it?
Hi,
have you tried adding this function to functions.php ?
function remove_comments_ip( $ip ) { return ”; }
add_filter( ‘pre_comment_user_ip’, ‘remove_comments_ip’ );
This will return blank field instead of IP in every NEW comment.
Hi,
have you tried enabling WP_DEBUG ?
To do that you need to open wp-config.php which is in the main directory and edit
define( ‘WP_DEBUG’, false );
to
define( ‘WP_DEBUG’, true );
Then instead of seeing white screen you should have some debug log.