Search Results for 'bbpress'
-
AuthorSearch Results
-
May 18, 2012 at 9:42 pm #113603
In reply to: BBPRESS SLUG PROBLEM
John James Jacoby
KeymasterWordPress runs post slugs through a sanitization filter to make sure there are no collisions. As such, no two slugs can be the same, regardless of the type of content that it is.
May 18, 2012 at 7:43 pm #113536Lynq
ParticipantNo problem at all, I didn’t like the formatting either lol.
May 18, 2012 at 7:42 pm #113535Jarret
ParticipantMade a few edits to use syntax highlighting and section headings, hope you don’t mind!
May 18, 2012 at 7:20 pm #113534Jarret
ParticipantYeah, had to help with that just last night. I checked your doc page though regarding bbp_list_forums and the formatting is a bit off making it hard to read for those still learning.
May 18, 2012 at 6:31 pm #113533Lynq
ParticipantAwesome, it works!
May 18, 2012 at 4:25 pm #113532Jared Atchison
MemberYou should be able to login here https://codex.bbpress.org/wp-admin/ with your bbPress username/pass.
Then just head to pages.
May 18, 2012 at 3:32 pm #113531Lynq
ParticipantI am probably being stupid, but I can not see where I can contribute on any of the codex pages?
May 18, 2012 at 3:30 pm #113530Lynq
ParticipantOoooh, cool!
Can we create more documentation? I notice the same question on the forums over and over again about the bbp_list_forums, removing the commas. I was thinking about explaining the bbp_list_forums function for templating?
May 18, 2012 at 3:10 pm #113529Jared Atchison
MemberYep! Anyone can login and edit that page or contribute to other pages on the codex
May 18, 2012 at 3:00 pm #113528Lynq
ParticipantIs there any where we can go to help contribute to the list?
May 18, 2012 at 2:57 pm #113597In reply to: Avatars from last posters
Lynq
ParticipantI am sure there is a better solution, but you could use something like
if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => false, 'order' => 'DESC', 'post_parent' => 'any', 'posts_per_page' => 5 ) ) )
bbp_get_template_part( 'bbpress/loop', 'latest-topics' );Then use some css to remove everything except the avatars.
May 18, 2012 at 2:55 pm #112426In reply to: BuddyPress + bbPress – Site wide forum does not work
LabSecrets
ParticipantHi fritz, et al…
Fritz… I have no idea what you are talking about.
None of our videos stop halfway and you never have to pay to watch any of them?
I suggest you try again and also checkout archives, google, or even our YouTube or Vimeo libraries (“labsecrets” is the name), and you will find hundreds of full length, all free videos.
Cheers!
Spence
May 18, 2012 at 2:48 pm #108142In reply to: Layout bbPress as Invision or phpBB or vBulletin
Lynq
Participantfunction 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' => '<ul class="bbp-forums">',
'after' => '</ul>',
'link_before' => '<li class="bbp-forum">',
'link_after' => '</li>',
'count_before' => ' (',
'count_after' => ')',
'count_sep' => ', ',
'separator' => ', ',
'forum_id' => '',
'show_topic_count' => true,
'show_reply_count' => true,
'freshness_before' => '<td class="last-posted-box">',
'freshness_after' => '</td>',
'show_freshness_link' => true,
'freshness_author_before' => '<div class="author-box">',
'freshness_author_after' => '</div>'
);
$r = wp_parse_args( $args, $defaults );
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
if ( $sub_forums = bbp_forum_get_subforums( $forum_id ) ) {
// 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;
// Show topic count
if ( !empty( $show_freshness_link ) && !bbp_is_forum_category( $sub_forum->ID ) ) {
$freshness_link = bbp_get_forum_freshness_link( $sub_forum->ID );
$freshness_author = $freshness_author_before . bbp_get_author_link( array( 'post_id' => bbp_get_forum_last_active_id( $sub_forum->ID ), 'size' => 14 ) ) . $freshness_author_after;
$freshness_link = $freshness_before . $freshness_link . $freshness_author . $freshness_after;
}
// Build this sub forums link
$output .= $link_before . '<a href="' . $permalink . '" class="bbp-forum-link">' . $title . $counts . $freshness_link . '</a>' . $show_sep . $link_after;
}
// Output the list
echo $before . $output . $after;
}
}This will give you more control over creating a theme which looks like Invision or PHPBB.
You will have to customize your theme as well to make sure it is compatible.
May 18, 2012 at 2:29 pm #113557In reply to: Making sense of Full Width and shortcode
Lynq
ParticipantI just commented out the sidebar from all my bbpress template files, worked perfectly.
May 18, 2012 at 2:26 pm #112425In reply to: BuddyPress + bbPress – Site wide forum does not work
Fritz Colburn
MemberYeah.. he’s done a video on the subject that stops half way through and requires you to pay to join labsecrets to see the rest.. Tell the whole story dude. Half of an answer is not an answer it is part of the problem.
May 18, 2012 at 2:20 pm #113556In reply to: Making sense of Full Width and shortcode
softechnos
MemberDid you add this in the main theme or in the bbpress twenty ten directory?
May 18, 2012 at 11:50 am #44857Topic: Plugin download links repoting 404 error
in forum Requests & FeedbackArun Singh
MemberHello,
I think there is some issue with the download links for bbPress plugins ( Hopefully all of them), they are reporting 404.
Kind Regards,
Arun singh
May 18, 2012 at 4:44 am #113650Jarret
ParticipantDid you have a company convert over to bbPress from vBulletin or did you do it yourselves?
May 18, 2012 at 2:24 am #113647JenniferNM
MemberIn our cafe, newer posts will show up, then somehow it keeps reverting back to a post that’s 35 days old, by the same person!
I finally just added a test reply to her post, so it would stop.
It’s only happening in the forum.
We just ported the whole thing over from vBulletin to bbpress and are obviously still working out the kinks.
May 18, 2012 at 2:03 am #113639Jarret
ParticipantYou’re going to have to FTP into your site in order to get to the file that you need to modify. The file that you need to modify is located under wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/bbpress which is one level lower than what you can access through the admin in WP.
Once you are inside the /bbpress directory explained above you’ll need to open loop-single-forum.php and follow the directions I posted in my first reply to you.
Unfortunately the plugin is only designed to work with bbPress 2.1 which currently is still in testing which is why it isn’t working for you. Was it working fine before the re-install today?
May 18, 2012 at 1:59 am #113638JenniferNM
MemberAlso, something to note: just today, we uninstalled, then reinstalled the bbpress Genesis Extend plugin, because we cannot get it to work – or even show up anywhere.
It’s not under the Genesis menu or Genesis Settings. Not under WP Settings either.
Don’t know if that’s relevant, but thought I’d mention it.
May 18, 2012 at 1:55 am #113636JenniferNM
Member2.0.2
I did a search for “list” and “loop” in the child theme files and no luck. Here’s a list of our bbpress files:
Theme Functions
(functions.php)
archive-forum.php
(archive-forum.php)
archive-topic.php
(archive-topic.php)
bbPress – Create Topic Page Template
(page-create-topic.php)
bbPress – Forums (Index) Page Template
(page-front-forums.php)
bbPress – Statistics Page Template
(page-forum-statistics.php)
bbPress – Topic Tags Page Template
(page-topic-tags.php)
bbPress – Topics (Newest) Page Template
(page-front-topics.php)
bbPress – Topics (No Replies) Page Template
(page-topics-no-replies.php)
bbPress – User Login Page Template
(page-user-login.php)
bbPress – User Lost Password Page Template
(page-user-lost-pass.php)
bbPress – User Register Page Template
(page-user-register.php)
single-forum.php
(single-forum.php)
single-reply-edit.php
(single-reply-edit.php)
single-reply.php
(single-reply.php)
single-topic-edit.php
(single-topic-edit.php)
single-topic-merge.php
(single-topic-merge.php)
single-topic-split.php
(single-topic-split.php)
single-topic.php
(single-topic.php)
single-user-edit.php
(single-user-edit.php)
single-user.php
(single-user.php)
single-view.php
(single-view.php)
taxonomy-topic-tag-edit.php
(taxonomy-topic-tag-edit.php)
taxonomy-topic-tag.php
(taxonomy-topic-tag.php)
Styles
RTL Stylesheet
(rtl.css)
Stylesheet
(style.css)
May 18, 2012 at 1:53 am #113635Jarret
ParticipantWhich version of bbPress are you using? You can check by going into Plugins in the admin and it should give you the info.
May 18, 2012 at 1:46 am #113634JenniferNM
MemberAnd sorry, I meant the files for bbpress above, in terms of where I was looking.
May 18, 2012 at 1:43 am #113632Jarret
ParticipantNo that’s how I do it within the browser. Are you using the bbPress Genesis Extend plugin?
-
AuthorSearch Results