Search Results for 'bbpress'
-
Search Results
-
Topic: Integration
I have integrated my test forum with wordpress. Both have seperate databases and are on the same host server but bbpress is in a sub-directory, Wp is in the root. WordPress has 4 members bbpress has 300, afterwords bbpress has only 4 members, why is that, it seems like instead of integration wordpress details have overwritten bbpress…any one able to help
Topic: bbShowcase shut down?
I just tried to drop by bbShowcase and found this waiting for anyone visiting
The bbPress Showcase has been discontinued.
The removal of Sam Bauers and the halting of bbpress.org 2.0
was a clear and final sign that there is no interest in allowing
bbPress to become a mature, robust program and community.
By now bbPress 1.5 could have been in alpha but instead
bbPress development has been deliberately stagnated,
which should be a very alarming warning to everyone.
In addition, bbShowcase had only six donations in 2009,
which indicated to me there was no interest in my work.
My code will remain on bbpress.org as open source GPL
for those that wish to use it, however I caution you to
consider bbPress’s lack of leadership before continuing to use it.
I’m running bbPress 1.0.2.
I’m having problems with the “PREVIOUS” link when using the “bb_latest_topics_pages” function.
I have the following code on my frontpage.php
<?php endforeach; endif; // $topics ?>
<?php bb_latest_topics_pages( array( ‘before’ => ‘<div class=”nav”>’, ‘after’ => ‘</
div>’ ) ); ?>
It display paged frontpage topic links (1, 2, 3, Next) but whenever I’m on a page other than the frontpage … for example, Page 2, both the Previous and Page 1 link points to the current page and not the previous page.
I am sharing this, just in case it may help someone else looking to implement this feature. There is a great plugin that does this, bbAvatars, but it was interfering with other functions I wanted to implement, so I had to find a workaround (bbPress 1.0.2).
With the premise that I really don’t like to edit core files, because you have to remember to edit them each time you upgrade, this time I had no choice, as any avatar plugin I tried did not work out for my purposes. There are a few simple steps you can use to set your own custom avatar, when users have not set a gravatar account.
1 – I have noticed that the “blank” choice in the settings is the only one that refers to an internal image, so you just want the code to point to your own custom image, rather than “blank.gif” (which may be also used for other calls, so I wanted to leave that one alone and not replace it with another custom blank).
In “bb-includes”, look for the file “functions.bb-pluggable.php”, and edit around line 895, where it says
case 'blank':
$default = bb_get_uri( 'bb-admin/images/blank.gif', null, BB_URI_CONTEXT_IMG_SRC );and change blank.gif with your image, default.jpg or any other name.
2 – Upload your custom image in bb-admin/images (if you store it somewhere else, change the path in the code above accordingly).
3 – In your Admin Dashboard –> Settings –> Discussions, set the choice to “blank”.
Voila!!!!
To change the avatar size from the bbpress default size, in post.php of your templates, look for
<?php post_author_avatar_link(); ?>and add the number of pixels inside (), for example:
<?php post_author_avatar_link(80); ?>Hope this helps!

