Search Results for '"wordpress'
-
Search Results
-
I installed BuddyPress and had it all working fine, no 404 errors or anything. So once I figured I had it working I installed bbPress. I chose to have it integated with my WordPress/BuddyPress site. I filled out the 3 step form and was under the impression that everything went well. Is there anywhere that I can find a fix or suggestions how to fix.
Also, I can see the new forum outside my wordpress site but even though I can see the page and can see that I am logged in, I cannot adjust settings because I can see no Admin area.
Thanks.
I’m using wordpress 3.0.1 and bbpress 1.0.2. I was trying to bbpress integrate with wordpress. No matter whether I try to integrate at the time of installation or do it from the admin dashboard, I lose my access to the bbpress’s dashboard.
I did searched in the support forums but wouldn’t find any solution that works.
I did the datebase integration between wordpress and bbpress. It seems to have worked, but now I can’t log into my bbpress admin as before. Now I can only use my wordpress login…which shows me as a user, but not as an administrator. I know that in the dashboard there was on option to make the wordpress admin the bbpress admin, but I didn’t select that, and now I can’t get back there. thoughts?
I have a script that I made that pulls the count of posts a user does on bbpress and displays it on wordpress page template. For some reason I can’t get it to work. I know I need to add something to wordpress but I am not sure what. Here is the script so far.
function get_user_posts_forums1($user_id) {
global $wpdb; // I know I need to change this
$count = $bbdb->get_results(“
SELECT COUNT( * ) AS total
FROM {$bbdb->posts}
WHERE poster_id = {$user_id};”, object);
return $count[0]->total;
}
Any ideas?