bbPress米点站 » 主题:如何去掉发帖人名称前的头像? http://www.bbpress.me/forums/topic/%E5%A6%82%E4%BD%95%E5%8E%BB%E6%8E%89%E5%8F%91%E5%B8%96%E4%BA%BA%E5%90%8D%E7%A7%B0%E5%89%8D%E7%9A%84%E5%A4%B4%E5%83%8F%EF%BC%9F/feed/ Tue, 13 May 2014 09:46:29 +0000 http://bbpress.org/?v=2.5.1-5217 zh-CN http://www.bbpress.me/forums/topic/%e5%a6%82%e4%bd%95%e5%8e%bb%e6%8e%89%e5%8f%91%e5%b8%96%e4%ba%ba%e5%90%8d%e7%a7%b0%e5%89%8d%e7%9a%84%e5%a4%b4%e5%83%8f%ef%bc%9f/#post-2984 <![CDATA[如何去掉发帖人名称前的头像?]]> http://www.bbpress.me/forums/topic/%e5%a6%82%e4%bd%95%e5%8e%bb%e6%8e%89%e5%8f%91%e5%b8%96%e4%ba%ba%e5%90%8d%e7%a7%b0%e5%89%8d%e7%9a%84%e5%a4%b4%e5%83%8f%ef%bc%9f/#post-2984 Thu, 08 May 2014 15:59:15 +0000 icaction 如何去掉发帖人名称前的头像?

附件:
You must be logged in to view attached files.
]]>
http://www.bbpress.me/forums/topic/%e5%a6%82%e4%bd%95%e5%8e%bb%e6%8e%89%e5%8f%91%e5%b8%96%e4%ba%ba%e5%90%8d%e7%a7%b0%e5%89%8d%e7%9a%84%e5%a4%b4%e5%83%8f%ef%bc%9f/#post-2990 <![CDATA[回复:如何去掉发帖人名称前的头像?]]> http://www.bbpress.me/forums/topic/%e5%a6%82%e4%bd%95%e5%8e%bb%e6%8e%89%e5%8f%91%e5%b8%96%e4%ba%ba%e5%90%8d%e7%a7%b0%e5%89%8d%e7%9a%84%e5%a4%b4%e5%83%8f%ef%bc%9f/#post-2990 Fri, 09 May 2014 01:34:51 +0000 管理员 @icaction

目标文件:plugins\bbpress\includes\forums\template.php
找到下面代码,把’size’ => 14 改成 0 应该就可以了,其实应该还有几处的,你可以自己搜搜“description”看看其它函数。

 Code: arbitrary (select
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.

function bbp_get_single_forum_description( $args = '' ) {

    // Parse arguments against default values
    $r = bbp_parse_args( $args, array(
      'forum_id'  => 0,
      'before'    => '<div class="bbp-template-notice info"><p class="bbp-forum-description">',
      'after'     => '</p></div>',
      'size'      => 14,
      'feed'      => true
    ), 'get_single_forum_description' );

]]>
http://www.bbpress.me/forums/topic/%e5%a6%82%e4%bd%95%e5%8e%bb%e6%8e%89%e5%8f%91%e5%b8%96%e4%ba%ba%e5%90%8d%e7%a7%b0%e5%89%8d%e7%9a%84%e5%a4%b4%e5%83%8f%ef%bc%9f/#post-2991 <![CDATA[回复:如何去掉发帖人名称前的头像?]]> http://www.bbpress.me/forums/topic/%e5%a6%82%e4%bd%95%e5%8e%bb%e6%8e%89%e5%8f%91%e5%b8%96%e4%ba%ba%e5%90%8d%e7%a7%b0%e5%89%8d%e7%9a%84%e5%a4%b4%e5%83%8f%ef%bc%9f/#post-2991 Fri, 09 May 2014 04:26:10 +0000 icaction @admin
不行啊

]]>
http://www.bbpress.me/forums/topic/%e5%a6%82%e4%bd%95%e5%8e%bb%e6%8e%89%e5%8f%91%e5%b8%96%e4%ba%ba%e5%90%8d%e7%a7%b0%e5%89%8d%e7%9a%84%e5%a4%b4%e5%83%8f%ef%bc%9f/#post-2994 <![CDATA[回复:如何去掉发帖人名称前的头像?]]> http://www.bbpress.me/forums/topic/%e5%a6%82%e4%bd%95%e5%8e%bb%e6%8e%89%e5%8f%91%e5%b8%96%e4%ba%ba%e5%90%8d%e7%a7%b0%e5%89%8d%e7%9a%84%e5%a4%b4%e5%83%8f%ef%bc%9f/#post-2994 Sat, 10 May 2014 02:40:21 +0000 管理员 @icaction
自己找找吧,我具体没试过,其实很易改的,查看源码,全文件里搜搜class名也能找到相关代码。

最简单的方法是,前端写样式隐藏了它,一句话就行了。

]]>