Search Results for '+.+default+.+'
-
Search Results
-
I love the fact that bbPress now has native WYSIWYG editing, but the default theme for the editor doesn’t work on my site very well, it’s hard to read.
I know that other skins are available, but I don’t know how to actually select them for use with the bbPress editor. Is there a way?
I’m messing around with bbpress in a site with a Genesis theme. I am using the bbpress default theme(s).
Unfortunately the Fancy Editor stretches beyond the column end on the right hand side and gets cut off… and it looks like there are lots and lots of buttons on the editor…
Also the text field cannot be stretched so it makes it quite difficult to write longer texts…
How have you setup bbpress.org?
Your stuff here looks amazing… and the editor is clean and stretchable…
Thanks,
Anders
Topic: Order Forum
Hello, I have a problem. I just downloaded bbPress to WordPress, was installed correctly, but when putting an order in the forum is not possible.
I have 5 sections in the forum, and try to create order, but I ignored. I tried to change through “Order” putting the numbers 1,2,3, etc., but the next thing is the default, new forums up, and there is no way to change it, why?
Hi,
I’m using bbpress with WP and need bbpress to recognize a different WP role as the bbpress default “Forum Member (participant)” role. This is necessary because I have other WP plugins installed that need to share the same default role with bbPress.
Can I achieve this by modifying bbp-core-caps.php in some way? If not, what is the recommended solution?
Thanks in advance.
M
I’m running the latest version of bbpress with a BP 1.5 installation. Love, love bbpress!!!
I’m using a combination of bbpress central forums and BP group forums. I was having issues getting the BP group forums to work after installing/uninstalling bbpress, so I deactivated the BP group forums and planned on just using the bbpress forums. Then I saw a nifty little selection in bbpress to “let BP Groups have their own forums” so I turned that on and got group forums back for BP! Back on track and cooking with gas! (Or so I thought.)
Everything works great on the bbpress forums side, except for Favoriting (yes new verb) and Subscribing to topics, (well they work if I right-click the links and open in a new tab or window–not a biggie right now).
The two biggest issues I have are on the BP groups forums side. (1) I get the following error when trying to view a topic:
“Fatal error: Call to undefined method stdClass::have_posts() in /home/content/46/7943846/html/wp-content/plugins/bbpress/bbp-includes/bbp-reply-template.php on line 168”. (Funny enough the Favorite and Subscribe options work really well on this broken screen.) I can post new topics just fine.
(2) When I post a topic in a BP Group forum, it shows up in the main activity feed and in my personal activity feed, but not on the activity feed for the group.
I’m using Suffusion along with the Suffusion BP and Suffusion bbpress Packs, but the issues persist even when I use the default BP theme. I deactivated my plugins one by one just to rule them out and no change in the result.
Reactivating Group Forums on the BP side and selecting “use existing bbpress install” gives me 404 errors and no BP forums at all. Don’t know what to do. Well I could just not use the BP groups forums. OR I could sledgehammer the whole install and start from scratch. Would like to avoid either of those options if possible though. The site is http://fitninja.com and test user is username: *** password: ***
Topic: Moderation help
I’m having some moderation issues on my site…
a) At least for some users, EVERYTHING they post is going to the moderation queue, despite settings both within WordPress (Settings–>Discussion) (which allows comments to be posted once there’s something approved by that author), within a plugin called “bbPress Moderation” (which allows topics and replies to be posted once there’s something approved by that author).
b) is there an easier way for an admin to publish topics and replies that go into moderation? Right now I have to manually “edit” each item and then click “publish”, which seems to take like 3 steps longer than WordPress’s default comment moderation system (where you can either bulk approve comments or where you can click “approve” instead of “edit” and “trash.”
I’ve tried turning off all plugins, toggling settings, and so forth, and nothing works. Please help! I’m running latest installations of WordPress, Buddypress, bbPress… GEnesis/Prose. Thank you.
Congrats on the 2.1 update, it rocks. But I do have one minor
needlerequest to make concerning the exposure of user bio information. Even when there is none.The Symptom:

“Hey Admin dude, I may be incognito and unremarkable, but why draw attention to me like this?”
Cause:
Not checking if the description field in the user profile is empty (user-details.php).
Twentyten’s native bio box code is wrapped in a conditional that calls a hookable function, get_the_author_meta( ‘description’ ). Twentyten defaults to skipping the bio box completely if the user profile ‘description’ field is empty (on both single posts and author archives).
And thanks to the hook, the author of a child theme can also prevent display of this stuff based on any criteria they choose — like, author bio info is shared with logged-in users only.The bbPress function bbp_get_displayed_user_field() isn’t currently hookable :(, but this whole thing is fixable with 3 or 4 lines of code in a couple of files. It’s not so much a bug as a lapse in coding consistency. Whatever, it’s busting my chops right now. If I didn’t know better, I’d ask for my money back 😉
Could this be put right in the next update? Makes for better consistency with WordPress, imho 🙂
Meanwhile, in other bbPress core-hacking news…
‘I also have a needle about the way author URL construction is similarly unhookable, but that’s for another thread’
When the converter gets to the topics, it stalls and when I check the Apache error log I see this:
[Thu Jul 19 07:46:32 2012] [notice] Parent: child process exited with status 3221225725 — Restarting.
[Thu Jul 19 07:46:33 2012] [notice] Apache/2.2.21 (Win32) PHP/5.3.9 configured — resuming normal operationsSame with default settings or 1000 rows setting. It did about 500 topics and then stalled. It doesn’t look like it’s because of memory, I have 4GB and a 64-bit system (doing this locally). Any tips?
Hey guys,
I am putting up a topic to show how I have created the layout on http://teamoverpowered.com/forums/
My aim when creating the theme was to try and create a last poster block that would work throughout the forums and sub forums list.
custom_bbp_list_forums – this function creates the sub forums under the main forum
public function custom_bbp_list_forums( $args = '' ) { // Define used variables $output = $sub_forums = $topic_count = $reply_count = $counts = ''; $i = 0; $count = array(); // Defaults and arguments $defaults = array ( 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'count_before' => ' (', 'count_after' => ')', 'count_sep' => ', ', 'separator' => ', ', 'forum_id' => '', 'show_topic_count' => true, 'show_reply_count' => true, 'show_freshness_link' => true, ); $r = bbp_parse_args( $args, $defaults, 'list_forums' ); extract( $r, EXTR_SKIP ); // Bail if there are no subforums if ( !bbp_get_forum_subforum_count( $forum_id ) ) return; // Loop through forums and create a list $sub_forums = bbp_forum_get_subforums( $forum_id ); if ( !empty( $sub_forums ) ) { // Total count (for separator) $total_subs = count( $sub_forums ); foreach ( $sub_forums as $sub_forum ) { $i++; // Separator count // Get forum details $count = array(); $show_sep = $total_subs > $i ? $separator : ''; $permalink = bbp_get_forum_permalink( $sub_forum->ID ); $title = bbp_get_forum_title( $sub_forum->ID ); // Show topic count if ( !empty( $show_topic_count ) && !bbp_is_forum_category( $sub_forum->ID ) ) { $count['topic'] = bbp_get_forum_topic_count( $sub_forum->ID ); } // Show reply count if ( !empty( $show_reply_count ) && !bbp_is_forum_category( $sub_forum->ID ) ) { $count['reply'] = bbp_get_forum_reply_count( $sub_forum->ID ); } // Counts to show if ( !empty( $count ) ) { $counts = $count_before . implode( $count_sep, $count ) . $count_after; } if ( !empty( $show_freshness_link ) ) { $freshness_link = "" . BBP_Default::teamop_get_last_poster_block( $sub_forum->ID ) . ""; } // Build this sub forums link if ($i % 2) { $class = "odd-forum-row"; } else { $class = "even-forum-row"; } $output .= "" . $link_before . '<a href="' . $permalink . '">' . $title . '</a>' . $counts . $freshness_link . $link_after . ""; } // Output the list echo apply_filters( 'bbp_list_forums', $before . $output . $after, $args ); } }I then call that function inside loop-single-forum.php like so:
BBP_Default::custom_bbp_list_forums( array ( 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'count_before' => 'Topics: ', 'count_after' => '', 'count_sep' => 'Posts: ', 'separator' => '', 'forum_id' => '', 'show_topic_count' => true, 'show_reply_count' => true, 'show_freshness_link' => true, ));Inside the first function I am also calling a second custom function called custom_get_last_poster_block
function custom_get_last_poster_block( $subforum_id = "" ) { if ( !empty( $subforum_id ) ) { $output = ""; $output .= "<a href='". bbp_get_forum_last_topic_permalink( $subforum_id ) ."'>" . bbp_get_topic_last_reply_title( bbp_get_forum_last_active_id( $subforum_id ) ) . "</a>"; $output .= ""; $output .= "by "; $output .= bbp_get_author_link( array( "post_id" => $subforum_id, "size" => 14 ) ); $output .= ""; $output .= ""; $output .= bbp_get_forum_last_active_time( $subforum_id ); $output .= ""; } else { $output = ""; $output .= "<a href='". bbp_get_forum_last_topic_permalink() ."'>" . bbp_get_topic_last_reply_title( bbp_get_forum_last_active_id() ) . "</a>"; $output .= ""; $output .= "by "; $output .= bbp_get_author_link( array( "post_id" => bbp_get_forum_last_active_id(), "size" => 14 ) ); $output .= ""; $output .= ""; $output .= bbp_get_forum_last_active_time( bbp_get_forum_last_active_id() ); $output .= ""; } return $output; }This then creates my sub forum list, I added some extra classes in I can hook onto and display:none if need. I decided when creating me theme that I would get as much information showing as possible, then just use CSS to customise it.
The final functions is one I call inside loop-single-topic.php.
public function custom_get_last_poster_block_topics() { $output .= ""; $output .= bbp_get_author_link( array( "post_id" => bbp_get_forum_last_active_id(), "size" => 14 ) ); $output .= ""; $output .= ""; $output .= bbp_get_topic_last_active_time( bbp_get_topic_last_active_id() ); $output .= ""; return $output; }This is my final function and it just adds the last poster block inside the topics list.
If you need any more help then let me know.
UPDATE: Please see the following topic for updated code
I have created a bbPress starter theme with a phpBB look and feel