0

默认情况下,Buddypress 在单击新选项卡(所有成员、我的朋友、我的收藏夹...)时会打开评论表单。

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

4

1 回答 1

2

这需要编辑核心 Buddypress 文件。如果有人知道如何通过主题文件执行此操作,请发布。

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

因此修改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();
});
于 2012-03-08T21:22:05.313 回答