更改选项卡时隐藏活动注释表单

时间:2012-01-09 13:07:45

标签: wordpress buddypress

默认情况下,当点击新标签(所有成员,我的朋友,我的收藏夹......)时,Buddypress会打开评论表单。

是否有人可以告诉我如何不显示此表格?谢谢。

1 个答案:

答案 0 :(得分:2)

这需要编辑核心的Buddypress文件。 如果有人知道如何通过主题文件这样做,请发布。

wp-content/plugins/buddypress/bp-themes/bp-default/_inc/global.js中,您会在第1143行找到名为bp_activity_request的函数。

修改jq('div.activity').fadeOut()回调:

在:

jq('div.activity').fadeOut( 100, function() {
    jq(this).html(response.contents);
    jq(this).fadeIn(100);

    /* Selectively hide comments */
    bp_dtheme_hide_comments();
});

后:

jq('div.activity').fadeOut( 100, function() {
    jq(this).html(response.contents);
    jq('form.ac-form').hide(); // added line to hide forms
    jq(this).fadeIn(100);

    /* Selectively hide comments */
    bp_dtheme_hide_comments();
});