Search Results for '\"wordpress\"'
-
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?Topic: What am I doing wrong?
I downloaded the bbpress plugin for wordpress. Now I’m receiving this message: Your active theme does not include bbPress template files. Your forums are using the default styling included with bbPress.
How do I fix this?
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.
I would like to disable ahref tags in the forum posts so users cannot add links to external websites within a post. In addition to that, I would also like to stop the automatic phrasing of links. For instance, if someone enters ‘http://www.bbpress.org’ I would like it to appear as plain text instead of a clickable link.
I made a plugin as mentioned by ‘jonich0n’ in the following post but it is not working:
I uploaded this plugin in my wordpress plugins folder and then activated it from the wordpress ‘installed plugins’ page. Is there where it is supposed to be uploaded?