Search Results for 'code'
-
Search Results
-
I just installed bbPress 2.0.2 forum plugin for WordPress, and would like to change the text of link
HometoiGeek(or anything else, for that matter).So the breadcrumb
Home › ForumsbecomesiGeek › Forums(or something like that). How do I do that?I downloaded bbpress because the bbpress.org looked so nice. This is exactly the look I want in my forum. When I load the bbpress that I downloaded, it doesn’t look anything like this.
I am so bummed. I’m not a great coder, so if it’s going to involve a lot of php work, I’m out of luck.
My site is running WP 3.3.1, with the Twenty Eleven theme. Is there anything I can put my hands on to get a forum that looks like this one?
Jim
Topic: Custom profile fields
I am having an issue getting custom profile fields to work.
I have used the following code as a wordpress plugin and a bbPress plugin:
function set_my_profile_info_keys($myarray) {
$myarray = array(
‘testfield’ => array(0, __(‘TestField’))
);
return $myarray;
}
add_filter(‘get_profile_info_keys’, ‘set_my_profile_info_keys’);
However this doesn’t show the field on a users profile to allow them to edit it. I have also tried other variations of this code I have found on this forum and others but to no avail.
Any help getting this working would be much appreciated.