Bugs, questions, suggestions
-
Remove Comments from admin should also remove comments columns in posts/pages/media/etc. list view, considered as a bug.
How can we test if Disable XML-RPC works? Currently a call of
example.com/xmlrpc.phpstill shows a message:XML-RPC server accepts POST requests only.Considered as maybe a bug.
Could Disable XML-RPC also remove
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://example.com/xmlrpc.php?rsd" />or similar which is added in
wp_headrsd_linkaction?Could you add removal of
wp_headwlwmanifest_linkaction?Could you add removal of
wp_headwp_shortlink_wp_headandtemplate_redirectwp_shortlink_headeraction?Could you add removal of
wp_headwp_generatoraction?Could you add removal of
wp_headrest_output_link_wp_headandtemplate_redirectrest_output_link_headeraction?Could you enhance Remove WordPress logo on login screen with Replace WordPress logo on login screen with site icon if present, example code:
function ov3rfly_login_enqueue_scripts() { if ( has_site_icon() ) { ?> <style type="text/css"> .login #login h1 a { background-image: url("<?php echo get_site_icon_url( 192 ); ?>"); // 192 retina/hires, 84 normal } .login #login h1 a:focus { -webkit-box-shadow: none; box-shadow: none; } </style> <?php } } add_action( 'login_enqueue_scripts', 'ov3rfly_login_enqueue_scripts' );Could you add Replace WordPress logo link on login screen with site url, example code:
function ov3rfly_login_headerurl( $url ) { return get_bloginfo( 'url' ); } add_filter('login_headerurl', 'ov3rfly_login_headerurl' );Thanks for the plugin, greatly appreciated.
No Nonsense 1.3.0, WordPres 5.8.2
The topic ‘Bugs, questions, suggestions’ is closed to new replies.