hide URLs of author profiles on social networks

Posted in: Newspaper
Post count: 101

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.
Post count: 22421

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!

Post count: 101

thanks a lot 🙂 this working for some fields.

http://hizliresim.com/njBQgl

for this not working.

website, google and twitter. How can i hide this 3 fields? 🙂

Post count: 101

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?

  • This reply was modified 9 years by mhendiz.
  • This reply was modified 9 years by mhendiz.
Post count: 101

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' );

Post count: 22421

Glad you found it.
Best of luck on your project!

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.