English 中文(简体)
Hide sub-nav Options from Buddypress Profile
原标题:Hide sub-nav option from Buddypress Profile Page

我试图将“Change Avatar”方案从BuddyPress的“成员简介”网页上隐藏起来。 我先通过守则和我能告诉大家的多面阵列,用来为各团体创造这种天线,以及不为他们创造的其他天线。 是否有任何人知道,我只能用什么hoo子去解脱分项目? 不能确定这种骗局是什么,也不能确保我能以这种方式解脱。

在这里,我用一个屏幕对Im试图去除的照片(注:我先把姓名从“Change Avatar”改为“Changeography”。

Here s a screen shot http://dl.dropbox.com/u/722321/Screen%20shot%202012-05-16%20at%2012.46.53%20PM.png)

Thanks for any help. Jason

问题回答

your。 php或主题职能。 php

function remove_change_avatar() {
    bp_core_remove_subnav_item(  profile ,  change-avatar  );
}
add_action(  bp_setup_nav ,  remove_change_avatar , 100 );




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签