您在這裡

頁面怎樣可以不顯示作者資訊

victory719's 的頭像
victory719 在 2010-01-13 (三) 16:50 發表

小弟是drupal的新手!
我想問一下發表頁面的時候怎樣可以不顯示作者資訊?
圖中紅色地方,要怎麼才能去除!

去除作者資訊

之前有搜尋過,查到
版型->設計->整體設計->顯示文章的張貼資訊
但是沒有看到上面的設定

我看到的是
版型 > 設定 > 整體設定 > 顯示文章的張貼資訊 > 把所有的選項都不勾選
作者資訊是去掉了,但是網頁的標題還在
能夠把網頁的標題給去掉嗎,我想把標題也去掉

方式都差不多
只差你要刪些什麼

如果你要全部的頁面都不顯示title
可以去把page.tpl.php 裡面的

<?php print $title; ?>


去掉

<?php if ($title || $tabs || $help || $messages): ?>
<?php if (!empty($title) && !( arg(0) == 'node' && is_numeric(arg(1)))) : ?>

<?php print $title; ?>

<?php endif; ?>

# my Drupal test website 搞鬼遊戲

修改node.tpl.php代码,在你使用的主题文件夹内
<?php print $picture ?>

<?php if (!$page): ?>

" title="<?php print $title ?>"><?php print $title ?>

<?php endif; ?>

<?php if ($submitted): ?>
<?php print $submitted ?>
<?php endif; ?>

<?php print $content ?>

<?php if ($terms && !$teaser): ?>

Tags:
<?php print $terms ?>

<?php endif;?>

<?php print $links; ?>

删除斜体部分代码

致歉声明:
对不起上面的朋友,上面的解答不对。drupal本身就是可以设置的这样的功能,以免有人误解故此声明。正确的做法是在后台管理的主题管理/admin/build/themes/settings中可以设置是否显示作者名字及发布日期。