Can someone help me?
http://i.resimyukle.xyz/V24d.jpg
how can i hide this all field with css metod or somethink like that?
I have too many authors. They add nonsense links.
Thanks!
-
This topic was modified 9 years by
mhendiz.
Hello,
You can remove the socila networks by commenting out the ones that you do not want to see from this file:
https://www.screencast.com/t/2LT1EiPNh
Thank you!
thanks a lot 🙂 this working for some fields.
for this not working.
website, google and twitter. How can i hide this 3 fields? 🙂
i found for website:
function remove_website_row_wpse_94963_css()
{
echo '<style>tr.user-url-wrap{ display: none; }</style>';
}
add_action( 'admin_head-user-edit.php', 'remove_website_row_wpse_94963_css' );
add_action( 'admin_head-profile.php', 'remove_website_row_wpse_94963_css' );
only need to hide google+ and twitter.
when i try this class “tr.user-gplus_id-wrap, user-twitter-wrap” for this codes echo ‘<style>tr.user-url-wrap{ display: none; }</style>’; website broken.
like that
function remove_website_row_wpse_94963_css()
{
echo '<style>user-gplus_id-wrap{ display: none; }</style>';
}
add_action( 'admin_head-user-edit.php', 'remove_website_row_wpse_94963_css' );
add_action( 'admin_head-profile.php', 'remove_website_row_wpse_94963_css' );
What is the truth?
Okey 😀 finally fixed it.
You can hide website url, google+, and twitter handle with css metod.
function remove_website_row_wpse_94963_css()
{
echo '<style>tr.user-url-wrap{ display: none; }</style>';
echo '<style>tr.user-gplus_id-wrap{ display: none; }</style>';
echo '<style>tr.user-twitter-wrap{ display: none; }</style>';
}
add_action( 'admin_head-user-edit.php', 'remove_website_row_wpse_94963_css' );
add_action( 'admin_head-profile.php', 'remove_website_row_wpse_94963_css' );