默认情况下,Buddypress 在单击新选项卡(所有成员、我的朋友、我的收藏夹...)时会打开评论表单。
有人可以告诉我如何不显示此表格吗?谢谢你。
这需要编辑核心 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();
});