2012-01-09 23 views
0

默認情況下,當點擊新標籤頁(所有成員,我的朋友,我的收藏夾...)時,Buddypress將打開評論表單。更改標籤頁時隱藏活動評論表

難道有人可以告訴我如何不顯示此表單嗎?謝謝。

回答

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(); 
});