現在有一個需求
就是在使用者登入後
直接讓使用者轉入「我的文章列表」
方便於此頁面查看所有自己po的文章
而這個列表只有該會員自己看的到
A會員-> 進入「我的文章列表」頁面 -> 跑出A會員的所有文章列表
B會員-> 進入「我的文章列表」頁面 -> 跑出B會員的所有文章列表
A可以看B的文章內容~B也可看A的文章內容~不影響
問題:其中這個「我的文章列表」要如何做呢?麻煩大家給我一個方向~感謝~
目前透過views所作出的頁面,只能做到抓取全部的文章,小弟初學希望各位老師幫忙解惑ˊˋ
Re: 請問如何做出類似「我的文章列表」
內置的 Tracker View 就是這功能
Re: 請問如何做出類似「我的文章列表」
另種做法,views page 加上 argument,用 uid 抓出那個用戶的文章列表;然後透過 validation 設定非本人看不到文章列表
接著用 Login Destination 模組,設定登入後要重導的頁面
Re: 請問如何做出類似「我的文章列表」
你好
朋友
我是来自大陆的网友, 我也一直为这个问题而困扰, 搜索了google也没有结果.
今天我终于把它解决了
解决方法是:
在 includes/common.inc 中找到
function drupal_final_markup($content) {
// Make sure that the charset is always specified as the first element of the
// head region to prevent encoding-based attacks.
return preg_replace('/]*>/i', "\$0\n", $content, 1);
}
让后把这段修改成:
function drupal_final_markup($content) {
// Make sure that the charset is always specified as the first element of the
// head region to prevent encoding-based attacks.
//return preg_replace('/]*>/i', "\$0\n", $content, 1);
return $content;
}
问题就可以解决了. 这是drupal的一个小bug.
你可以到我的站看看 如何在淘宝网上开店 查看源代码, 你将看到我的meta是不重复的
你也可以试试哦
希望对你有所帮助
—
http://www.lp666.com
.
Re: 請問如何做出類似「我的文章列表」
你好
朋友
我是来自大陆的网友, 我也一直为这个问题而困扰, 搜索了google也没有结果.
今天我终于把它解决了
解决方法是:
在 includes/common.inc 中找到
function drupal_final_markup($content) {
// Make sure that the charset is always specified as the first element of the
// head region to prevent encoding-based attacks.
return preg_replace('/]*>/i', "\$0\n", $content, 1);
}
让后把这段修改成:
function drupal_final_markup($content) {
// Make sure that the charset is always specified as the first element of the
// head region to prevent encoding-based attacks.
//return preg_replace('/]*>/i', "\$0\n", $content, 1);
return $content;
}
问题就可以解决了. 这是drupal的一个小bug.
你可以到我的站看看 如何在淘宝网上开店 查看源代码, 你将看到我的meta是不重复的
你也可以试试哦
希望对你有所帮助
—
http://www.lp666.com
.