Search Results for 'bbpress'
-
Search Results
-
http://bbpress.org/plugins/topic/user-photo-for-bbpress/
Hi, I’m trying to display the avatar of the person who started the forum topic on the mainpage, in the place of the last posters name, in the latest discussions area.
I’ve tried using the way it displays in profiles
<?php if ( $avatar = bb_get_avatar( $member->ID ) ) : ?>
<div id=”useravatar”><?php echo $avatar; ?></div>
<?php unset($avatar); endif; ?>
It does not work. I’ve tried pulling it like in a post
<?php post_author_avatar_link(); ?>
Nothing. One more
<?php
if (function_exists(‘bb_get_photo’))
bb_get_photo($user->ID);
?>
No joy there either. I tried using this function
<img src=”<?php echo USERPHOTO_URL . $profileuser->userphoto_image_file . “?” . rand() ?>” alt=”<?php _e(“Full size image”, ‘user-photo’); ?>” />
and it almost does it…
http://localhost.wordpress.com/wp-content/uploads/userphoto/?29089
but as you can see it does not grab the users avatar, (1.jpg) although it’s pointing to the right place.
has anyone ever gotten avatars showing on the mainpage with the user photo plugin? I am aware other plugins exist for avatars but they do not suit my needs, apart from this one hickup, user photo is the best for wordpress/bbpress shared avatars. The guy who made it has long since left
Hello
title says it all, I created my forum and now I’d like it to show in one of the pages of my WordPress site. Is that possible?
thanks
vim
Topic: jquery loading
I wanted to use a simple jquery script that I could implement around the forum when I wanted to toggle the visibility of sections of text (eg: hide and show some help information). I assumed I could use this wherever I wanted but it seems that bbpress only loads jquery on certain pages. It loads up for topics but not on pages such as login.php (where I was hoping to use said script).
Can anyone shed some light on where and when and why jquery is loaded? And how could I get it to load up for the login.php page as well? (rather than simply putting the jquery call in header.php, which would mean it gets called twice for some pages!)
I looked through a load of bb-includes but didn’t get too far!
I am following the install instructions and got through the installation successfully. Then I tried to log in to mysite/bbpress/bb-admin/ and mysite/bbpress/bb-admin/admin.php and it keeps sending me back to mysite/bbpress, although it shows that I am logged in. In fact, I logged out and logged back in just to make sure that I was logged in correctly. I still just go to the “home” page of the forum.
What am I doing wrong?
Topic: Pagerank update
Hi there,
Google has updated his pagerank yesterday…
My new BBpress went from PR0 to PR4
Whats yours?
Hello,
We’ve been using bbPress for a couple of weeks now, and have been getting a couple dozen automated accounts each day. Now it appears they are coming alive adding spam posts to the forums.
We’re using the instant-password plugin because we don’t want our users to have to wait for e-mail, and I personally despise captcha (see http://www.stopcaptcha.com).
After cleaning out the bot accounts, here is what we did to stop it:
Our registration page: http://www.checkfront.com/community/register.php
Using CSS, we hid the occupation and interest fields (don’t need them). Spam bots will often fill out all the forum fields on a page. If a new registration comes in with one of those filled, we discard it.
We also added a hidden field (potpan) that gets filled with a unique id generated on each page load via javascript. If the potpan id doesn’t match the one in the session, we discard it.
Since we put it in place yesterday, it’s blocked all 35 automated registrations.
If anyone is using the instant-password plug in and would like the modified code, let me know and will zip it up. Perhaps this functionality could make its way into the standard registration.
Cheers,
-J
Topic: Using subversion to update
I have a long-standing habit of using subversion for WordPress and bbPress updates. There are some added features in the trunk that I like, but I wonder if it’s safe to update to the trunk at this point. A look at the tickets seems to indicate that it would be relatively ok.
Anyone have experiences using trunk?