Reply To: Would it be possible to do this with the forum categories?
Is that a bbPress site? There are some docs on the codex to get you started modifying your bbPress setup http://codex.bbpress.org/
View ArticleFixing my bbpress disply
Hi all so i have been playing with my bbpress install a little to get what i want and am almost there! All i would like to do now is tidy it up a little but could do with some help! On this forum you...
View ArticleReply To: Fixing my bbpress disply
Would be great if anyone has any suggestions on how to fix these things. I have now fixed the net topic form. I basically created a template for that page, pulling the code from form-topic.php Not...
View ArticleChanging profile link from wp-admin to bbpress profile
I have the below code in my menu to add login & register. it is working fine but I just want to redirect the profile link to bbpress profile page instead of going to wp-login. Currently user role...
View ArticleReply To: Changing profile link from wp-admin to bbpress profile
I am having the same issue on our site and can’t find where to edit the profile” link. we are suing the login with ajax plugin as well.
View ArticleReply To: Changing profile link from wp-admin to bbpress profile
See the attached for some help http://codex.bbpress.org/layout-and-functionality-examples-you-can-use/ Section 8
View ArticleReply To: Fixing my bbpress disply
“On this forum you have a nice clean bar showing create topic favorites and subscriptions, how can I create this on my forum. Does not have to be exactly the same but similar.” Answered in another...
View ArticleReply To: Changing profile link from wp-admin to bbpress profile
Robin, yes this is to add a Profile link in the Menu, but we are trying to edit the Profile link in the sidebar widget. Currently a non admin user clicks on the Profile link in the widget and they get...
View ArticleReply To: Changing profile link from wp-admin to bbpress profile
hmm.. with bbPress you should have a login widget that takes them to the bbPress profile, I add the following code to it to make editing obvious <p><a href="<?php bbp_user_profile_url(...
View ArticleReply To: Changing profile link from wp-admin to bbpress profile
edited to get the link right !
View ArticleReply To: WP_Query post type topic help
suspect that there is a variable in loop-sinlge-reply that already exists, but is not there in loop posts, so you’re getting a nil return. I’d try hardcoding some to see if you can pinpoint. eg look...
View Articledifferent ways to get reply content?
What is the best way to get the content of a reply? Right now I’m using bbp_get_reply_content() and it was working fine until I added the GD bbPress Attachments plugin. Somehow that plugin is adding...
View ArticleReply To: different ways to get reply content?
Think you probably need to crack open the plugin, and see where GD bbPress Attachments is adding a filter, and exactly what code it is using. You might then be able to mod this in your loop to...
View ArticleChanging bbPress templates
bbpress has a large number of do_action() statements. I am familiar with this at the wordpress level but I am unable to locate where bbpress registers a large number of these actions. Specifically I...
View ArticleReply To: I have created a bbPress starter theme with a phpBB look and feel
Your link that is supposed to display what this looks like doesn’t work in your original post.
View ArticleReply To: Changing bbPress templates
no idea why the forum is saying I posted this a year ago. It was only minutes.
View ArticleReply To: Changing bbPress templates
Try http://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-4/ The actions are used in the templates held in wp-content/plugins/bbpress/templates/default/bbpress/
View ArticleReply To: Changing bbPress templates
I’ve already run a full text search through all files includes in the bbpress plugin. No files contain a reference to ‘bbp_template_before_forums_loop’, except loop-forums.php where it is called from.
View ArticleReply To: Changing bbPress templates
do_action( ‘bbp_template_before_forums_loop’ ); does nothing ! It is the hook onto which you would add an action using a function and an “add_action” command. If you want to alter behaviour, the it is...
View Article