Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 31,801 through 31,825 (of 64,534 total)
  • Author
    Search Results
  • #113603

    In reply to: BBPRESS SLUG PROBLEM

    WordPress 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.

    Lynq
    Participant

    No problem at all, I didn’t like the formatting either lol.

    Jarret
    Participant

    Made a few edits to use syntax highlighting and section headings, hope you don’t mind!

    Jarret
    Participant

    Yeah, 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.

    Lynq
    Participant

    Awesome, it works!

    You should be able to login here https://codex.bbpress.org/wp-admin/ with your bbPress username/pass.

    Then just head to pages.

    Lynq
    Participant

    I am probably being stupid, but I can not see where I can contribute on any of the codex pages?

    Lynq
    Participant

    Ooooh, 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?

    Yep! Anyone can login and edit that page or contribute to other pages on the codex :)

    Lynq
    Participant

    Is there any where we can go to help contribute to the list?

    #113597
    Lynq
    Participant

    I 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.

    LabSecrets
    Participant

    Hi 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

    http://labsecrets.com/tutorials

    #108142
    Lynq
    Participant
    function 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.

    #113557
    Lynq
    Participant

    I just commented out the sidebar from all my bbpress template files, worked perfectly.

    Yeah.. 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.

    #113556
    softechnos
    Member

    Did you add this in the main theme or in the bbpress twenty ten directory?

    #44857
    Arun Singh
    Member

    Hello,

    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

    Jarret
    Participant

    Did you have a company convert over to bbPress from vBulletin or did you do it yourselves?

    JenniferNM
    Member

    In 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. :-)

    Jarret
    Participant

    You’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?

    JenniferNM
    Member

    Also, 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.

    JenniferNM
    Member

    2.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)

    Jarret
    Participant

    Which version of bbPress are you using? You can check by going into Plugins in the admin and it should give you the info.

    JenniferNM
    Member

    And sorry, I meant the files for bbpress above, in terms of where I was looking.

    Jarret
    Participant

    No that’s how I do it within the browser. Are you using the bbPress Genesis Extend plugin?

Viewing 25 results - 31,801 through 31,825 (of 64,534 total)
Skip to toolbar