2

私はdrupal7を使用しています。ユーザープロファイルをリストしました。ユーザー プロファイルの詳細ページには、履歴が含まれています。「22時間15分会員」のように表示されます

履歴セクションを非表示にしたい。

4

4 に答える 4

7

[設定] -> [ユーザー] -> [アカウント設定] -> [表示の管理] ( admin/config/people/accounts/display) の順に進み、履歴の形式を「非表示」に設定します。

于 2012-11-29T07:31:23.470 に答える
0

こんにちは、これらのリンクがあなたに役立つことを願っています:)プロファイルから履歴を削除し、ユーザープロファイルレイアウトをカスタマイズするにはどうすればよいですか

上記のリンクからのポイント... 1.次のコードをコピーします

<?php
// $Id: user-profile-category.tpl.php,v 1.2 2007/08/07 08:39:36 goba Exp $

/**
 * @file user-profile-category.tpl.php
 * Default theme implementation to present profile categories (groups of
 * profile items).
 *
 * Categories are defined when configuring user profile fields for the site.
 * It can also be defined by modules. All profile items for a category will be
 * output through the $profile_items variable.
 *
 * @see user-profile-item.tpl.php
 *      where each profile item is rendered. It is implemented as a definition
 *      list by default.
 * @see user-profile.tpl.php
 *      where all items and categories are collected and printed out.
 *
 * Available variables:
 * - $title: Category title for the group of items.
 * - $profile_items: All the items for the group rendered through
 *   user-profile-item.tpl.php.
 * - $attributes: HTML attributes. Usually renders classes.
 *
 * @see template_preprocess_user_profile_category()
 */
?>
<?php if ($title && $title != t(History)) : ?>
  <h3><?php print $title; ?></h3>
<?php endif; ?>

<?php if ($title != t(History)) : ?>
<dl<?php print $attributes; ?>>
  <?php print $profile_items; ?>
</dl>
<?php endif; ?>

2. 上記のコードを「user-profile-category.tpl.php」という名前のファイルに保存します (Drupal のコア tpl ファイルをオーバーライドしているため、他の名前は使用しないでください)。上記のファイルを、使用しているテーマのルート フォルダーに保存します... 3 . 同じテーマを使用していることを確認します (特定のテーマの tpl ファイルをオーバーライドするため) 4. キャッシュをクリアし、結果を確認します :)

于 2012-11-29T06:50:38.863 に答える
0

管理 » 構成 » ユーザー » アカウント設定 » ディスプレイの管理

于 2014-08-10T09:13:14.163 に答える