連絡先情報から「ウェブサイト」フィールドを削除する


8

ユーザーの連絡先情報からウェブサイトフィールドを削除したい。以下を使用して、AIM、Jabber、Yahoo IMを削除します。しかし、これを使用してWebサイトを削除することはできません。誰か助けてください。

function remove_contactmethods( $contactmethods ) {
    unset($contactmethods['aim']);
    unset($contactmethods['yim']);
    unset($contactmethods['jabber']);
    return $contactmethods;
}
add_filter('user_contactmethods','remove_contactmethods',10,1);

回答:


11

再考および更新された回答:

user_contactmethodsフィルターを使用してWebサイトのラッパーを削除することはできません。これは、この部分がuser-edit.phpファイルにハードコードされており、フィルター可能なユーザー連絡先ループの一部ではないためです 。

wp_get_user_contact_methods( $profileuser )

CSSで非表示にする

ウェブサイトの行要素は、今では自分のGot .user-url-wrapクラス:

<tr class="user-url-wrap">
    <th><label for="url"><?php _e('Website') ?></label></th>
    <td>
        <input type="url" name="url" id="url" 
               value="<?php echo esc_attr( $profileuser->user_url ) ?>" 
               class="regular-text code" />
    </td>
</tr>

以前は#url、削除のためにフィールドの親行をターゲットにするにはjQueryを使用する必要がありました。

しかし、今では簡単に Webサイトのラッパーをて、CSSでそれを隠すこと。

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

他のフィールドを非表示にする

同様の行クラスがあります。

tr.user-{field}-wrap

フィールドで利用可能:

admin-color,
comment-shortcuts,
admin-bar-front,
user-login,
role,
super-admin,
first-name, 
last-name, 
nickname, 
display-name, 
email,
description, 
pass1, 
pass2, 
sessions, 
capabilities,
...

ダイナミックからのすべてのフィールドを含む ユーザー連絡先メソッドのます。

ここでは、{field}パーツを対応するフィールド名に置き換えるだけです。

スクリーンショット

ウェブサイトの行を削除する前に: 前


ウェブサイトの行を削除した後: 後


4
.remove()代わりに使用する必要があります.hide()
Bainternet

これは私のために働いていません。このコードは、finctions.phpに配置する必要がありますか?
MidhuN 2013

テストするとき、またはif機能テストでセンテンスをコメントアウトするときは、非管理者である必要があります。それはで動作しfunctions.phpますが、テーマを変更するときにプラグインを失うことがないように、プラグインに含めることをお勧めします。
バージィ2013

これはどうですかapply_filters( "user_{$name}_label", $desc );
Brad Dalton

これは、動的に作成された連絡方法のラベルのみを変更しますが、対応する入力テキストフィールドは変更しません。ウェブサイトのフィールドは、これらの動的の一部ではない 接触法。ただし、user-*-wrapパーツ全体にこのようなフィルターを設定すると便利です;-) @BradDalton
バージリー2015

5

ob_関数とDOMDocumentの問題を解決しました。フォームを保護するには、jQueryやCSSより優れています。

フックを介してHTMLコンテンツの一部にアクセスできない場合は常に、この種のソリューションを使用します。

function remove_extra_field_profile()
{

    $current_file_url =  preg_replace( "#\?.*#" , "" , basename( $_SERVER['REQUEST_URI'] ) );

    if( $current_file_url == "profile.php" )
    {
        add_action( 'wp_loaded', function(){ ob_start("profile_callback"); } );
        add_action( 'shutdown', function(){ ob_end_flush(); } );
    }
}
add_action( 'init', 'remove_extra_field_profile' );


function profile_callback( $html )
{
    $profile_dom = new DOMDocument;
    $profile_dom->loadHTML( $html );

    $all_lines = $profile_dom->getElementsByTagname( 'tr' );

    $excludes = array(
        'user-rich-editing-wrap',
        'user-admin-color-wrap',
        'user-comment-shortcuts-wrap',
        'show-admin-bar user-admin-bar-front-wrap',
        'user-url-wrap',
        'user-description-wrap'
        );

    $deletes = array();

    foreach ( $all_lines as $line ) 
    {
        $tr_calss = $line->getAttribute("class");

        if( in_array( $tr_calss, $excludes ) )
        {
            $deletes[] = $line;
        }
    }

    $deletes[] = $profile_dom->getElementsByTagname( 'h2' )->item(0);

    foreach ($deletes as $delete) 
    {
        $delete->parentNode->removeChild( $delete );
    }

    return $profile_dom->saveHTML();
}

ねえ、これは素晴らしいです。
Michael Mizner 2017

2

@ birgire'sを拡張し、@ Patricia Waltonの答えを正当化する(追加するだけの場合)

add_action('admin_head-user-edit.php','remove_website_row_wpse_94963');

管理者がプロファイルを編集しているページからのみ削除されます。ユーザーが自分のプロファイルを編集したときにも表示されないようにするには、以下も追加します

add_action('admin_head-profile.php','remove_website_row_wpse_94963');、 このような:

function remove_website_row_wpse_94963() {
    if(!current_user_can('manage_options')){
        // hide only for non-admins
        echo "<script>jQuery(document).ready(function(){jQuery('#url').parents('tr').remove();});</script>";
    }
}
add_action('admin_head-user-edit.php','remove_website_row_wpse_94963');
add_action('admin_head-profile.php','remove_website_row_wpse_94963');

1
新しいユーザーページの3分の1のadd_actionがありません:add_action('admin_head-user-new.php','remove_website_row_wpse_94963');
guidod

1

コードも私にとっては機能しませんでしたが、add_actionをprofile.phpを指すように変更しても機能しました。

function remove_website_row_wpse_94963() {
    if(!current_user_can('manage_options')){
        // hide only for non-admins
        echo "<script>jQuery(document).ready(function()    
            {jQuery('#url').parents('tr').remove();});</script>";
    }
}

add_action('admin_head-user-edit.php','remove_website_row_wpse_94963');

あなたが投稿したコードが@birgireのどのコードと異なっているのかわかりません。
gmazzap

0

@birgireの答えを拡張して、これを配列に書き込んだので、少し読みやすくなっています。

function awb_remove_user_profile_fields_with_css() {
//Hide unwanted fields in the user profile
$fieldsToHide = [
    'rich-editing',
    'admin-color',
    'comment-shortcuts',
    'admin-bar-front',
    'user-login',
    'role',
    'super-admin',
    //'first-name', 
    //'last-name', 
    'nickname', 
    'display-name', 
    //'email',
    'description', 
    //'pass1', 
    //'pass2', 
    'sessions', 
    'capabilities',
    'syntax-highlighting',
    'url'

    ];

    //add the CSS
    foreach ($fieldsToHide as $fieldToHide) {
        echo '<style>tr.user-'.$fieldToHide.'-wrap{ display: none; }</style>';
    }

    //fields that don't follow the wrapper naming convention
    echo '<style>tr.user-profile-picture{ display: none; }</style>';

    //all subheadings
    echo '<style>#your-profile h2{ display: none; }</style>';
}
add_action( 'admin_head-user-edit.php', 'awb_remove_user_profile_fields_with_css' );
add_action( 'admin_head-profile.php',   'awb_remove_user_profile_fields_with_css' );
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.