Search Results for '+.+default+.+'
-
Search Results
-
Hi,
I’ve been searching this forums yet but could’nt find any explanation to my problem so here it goes:
I’m a newbie at developping for bbpress, and trying to customize it for my needs.
First, I’m running bbPress 0.9.4; I’m also using a copy of the default theme that i’m modifying (located in my-templates/mysite).
I’ve attached a hook to the action ‘bb_index.php_pre_db’ which is ran on bbpress/index.php; My goal is to display only forums (without latest discussions and sticky topics) so i’ve copied the content of index.php and removed calls to latest discussions and sticky topics:
add_action('bb_index.php_pre_db', 'home');
function home(){
$forums = get_forums(); // Comment to hide forums
do_action( ‘bb_index.php’, ” );
bb_load_template( ‘front-page.php’);
exit();
}
The problem is that once in the file front-page.php, the $forums variable doesnt exists anymore. Actually i tried to print it out in the bb_load_template as well and the variable is empty too. It seems that because i’m using a hook (called by do_action), globals variable do not exists anymore in this context. I might be wrong but i’m actually stuck to this point and can’t really move forward. Any tips?
Cheers.
I thought I would show off my first completed bbPress project:
(Note: currently the forum login integration is actually broken (see this thread) due to my hastiness to upgrade WordPress to 2.8 without finishing checking everything first.)
User registration and logging in/out is all handled through bbPress. Integration worked perfectly first time when following the invaluable basic integration screencast by sambauers.
Customisations include:
- A bbPress theme written from the ground up, to match the rest of the site.
- Extended user profiles showing “Currently reading” and favourite books (example of a full profile).
- Private profile fields for private information needed when signing up for events.
- Additional meta information on topics to optionally display the book being discussed (example on this topic).
- Reverse thread ordering option, to allow visitors and users to reverse the order of posts in a thread (persistent).
- Custom avatar uploading functionality (defaults to Gravatar).
- Basic but surprisingly effective protection against spam user registrations in the form of blocking any registration which includes a value in the URL profile field (this field is not used on the site nor shown on the registration form). It works on the premise that any registration submission that includes a value in the URL field must be an automated spam bot registration and can simply be blocked.
- A second level of spam registration protection using the StopForumSpam.com API.
All the customisations have been achieved through custom plugins, the core hasn’t been touched. All the book images and links are automatically pulled in from the Amazon Web Services API.
I’m planning on releasing a couple of the plugins I wrote for the site once I’ve tidied them up and added some comments. I’ll probably wait until bbPress 1.0 though.
Any feedback appreciated!
I am searching for a way to show the author with his or full name instead of the username.
Is there a way to hack the template to do that? Or a plugin?
Alternatively, is there a way to make the full name the default setting for all users?
I already tried using the Use Display Name plugin, but it had no effect. Probably because it was written for an older version.
I’m using bbPress 1.0 RC2 integrated (not deep) with WPMU 2.7.1 and Buddypress.
Topic: Fatal error
Help! I’m using bbPress 1.0 rc-2. I’ve completed the installation process. But after I’ve tried the first log in to changed my password I could not go back to dashboard. It has an error message like this.
Fatal error: Call to undefined function bb_is_search() in /home/xxxxxxx/public_html/xxxxx/bb-includes/defaults.bb-filters.php on line 70
I’ve just downloaded bbpress 1.0 rc-2 today.
Hi all,
In “bbPress 9.0.5” I used a custom function to display author avatar outside the topic.php, I try the same function on bbPress 1.0 rc 2 and no longer works, can you help me?
Custom function:
function topic_author_avatar( $size = '50', $default = '', $post_id = 0 ) {
if ( ! bb_get_option('avatars_show') )
return false;
$author_id = get_topic_author();
if ( $link = get_user_link( $author_id ) ) {
echo '<a href="' . attribute_escape( $link ) . '">' . bb_get_avatar( $author_id, $size, $default ) . '</a>';
} else {
echo bb_get_avatar( $author_id, $size, $default );
}
}Hi Everyone!
Just got a WordPress and BBPress integrated site working. I adapted the default theme to make it match our custom WordPress theme. Comments appreciated!
Using bbPress 0.9 and WordPress 2.7 — when a user tries to perform a password recovery, it’ll accept anything. It doesn’t give an error message if the username doesn’t exist.
Case study (this actually happened):
A user “forgot” his password, but it turned out he had actually never registered. So he goes to the password recovery page, enters a username that doesn’t exist, and is then greeted with the default reset password text, saying “An email has been sent to the address we have on file for you.” That text made him expect an email which never came.
A. Is this something that can be fixed? B. Is this something that should be filed as a bug?
Topic: Discussion Boards
The complexity of discussion boards simply exceeds my patience level for user “Unfriendly” software. I have played with a few of them (phpBB, SMF,bbpress) and have concluded that they are just to damn difficult to integrate into a web site. Most will install easy enough, and the default themes are about as ugly as you can get. Every one of them claims to have easy configuration etc. What a pile of crap. The worst of the lot is the BBpress board. Which is surprising since their blog is so easy to install and changing themes is a snap.
The “how to” support pages for all of them must have been developed by computer geeks who rarely speak English. Instructions which should be simple are garbled and about as user friendly as a wet cat.
My intention was to attempt to integrate a discussion board with my blog (http://woodlandstar.net/WSblog/): something Word Press should have developed a long time ago. How difficult can it be to extend Comments into a simple discussion board? Until something is developed that easily installs and easily integrates with the existing web site, I will hold off on using BB.