Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 17,751 through 17,775 (of 64,532 total)
  • Author
    Search Results
  • #154640
    nsbp001
    Participant

    I am looking for a solution to have network-wide forums such that each site can access them at http://continuum.nsbp.org/sitename/forums and all these pages would pull the same data for these respective pages.

    I would like Groups forums where each site network-wide can participate in those forums, and I would like to have network-wide forums that are not associated with any groups.

    Is this possible? Can the bbPress plugin do this and have a page that can be in the menus as if it was a BP component?

    Robin W
    Moderator

    I’m having trouble finding a way to get the current user’s role for bbPress

    use

    bbp_get_user_role()

    in

    \bbpress\bbpress\includes\users\capabilities.php

    #154637
    Elenams
    Participant

    ood Morning :

    I need a little help with the design of bbPress , I explain : I have installed bbPress on my blog / site and love the result , the only problem is the final design. For example, forum posting source instead of black is light gray and the message is read with difficulty. I searched the net and much é us how to modify it , please help .

    My website : http://www.mamirami.es/foro/topic/normas-foro/

    Thank you very much !

    Elena M.

    #154634
    Robin W
    Moderator

    sorry for the late reply, I have been busy elsewhere.

    Read private forums is fine, and as it should be.

    I have carefully read through the above, and am struggling to help you further.

    The best I can suggest is that you set up a test site

    https://codex.bbpress.org/creating-a-test-site/

    so that you can try with a default theme and not break you live site

    #154631
    ten9inc
    Participant

    I am new to bbPress and am troubleshooting some issues. I created a page and am using the [bbp-forum-index] shortcode, but only around 50 of 80 forums are listed and there is no pagination to list the rest on successive pages. What am I missing and/or doing wrong?

    #154629
    pplegend
    Participant

    i use twentythirteen theme as my parent theme and bbpress plugin to bulid my forum. In the search results page, the first result format is a bit different with the others.
    according to my understanding, the execute order is: page.php->content-search.php->loop-search.php->loop-search-topic.php
    in page.php:

          <div class="entry-content">
               <?php the_content(); ?>
           </div><!-- .entry-content -->

    in content-search.php:
    <?php bbp_get_template_part( 'loop', 'search' ); ?>

    in loop-search.php:

    
              <?php while ( bbp_search_results() ) : bbp_the_search_result(); ?>
    
                   <?php bbp_get_template_part( 'loop', 'search-' . get_post_type() ); ?>
    
              <?php endwhile; ?>
    

    in loop-search-topic.php:

    
        <div id="post-<?php bbp_topic_id(); ?>" <?php bbp_topic_class(); ?>>
    
        </div>
    

    If there are three topics,the results should be:

    
        <div class="entry-content">
          <div id="post-<?php bbp_topic_id(); ?>" <?php bbp_topic_class(); ?>>
          <div id="post-<?php bbp_topic_id(); ?>" <?php bbp_topic_class(); ?>>
          <div id="post-<?php bbp_topic_id(); ?>" <?php bbp_topic_class(); ?>>
        </div>
    

    However, the result is:

    
        <div class="entry-content">
          <div id="post-<?php bbp_topic_id(); ?>" <?php bbp_topic_class(); ?>>
          </div>
        </div>
        <div id="post-<?php bbp_topic_id(); ?>" <?php bbp_topic_class(); ?>>
        <div id="post-<?php bbp_topic_id(); ?>" <?php bbp_topic_class(); ?>>
    

    The first element is inside <div class=”entry-content”> tag.

    #154628
    roblunte
    Participant

    Hello,

    I recently migrated from a hosted PunBB forum that has a 10,000 membership to a new BBpress. My new BBPress has some settings, plug-ins and design elements that need to be fixed and worked on.

    I am looking for a BBPress, plug-in, pimp it out, master that I can pay to help me get my forum ready for this massive migration. Here is the new forum, not yet ready.

    http://themodernvocalistworld.com/forums/

    Can I get some help? This is a paying gig…

    Robert Lunte
    The Modern Vocalist World.com
    robert@themodernvocalist.com
    01.425.444.5053

    nsbp001
    Participant

    Running WP 4.0 BP 2.0 and bbPress 2.5.4

    I would like to network-wide forums such that each site can access them at http://continuum.nsbp.org/sitename/forums and all these pages would pull the same data for these respective pages. Is this possible?

    #154623
    AnneMarie
    Participant

    Hi Robkk,

    Thank you for responding to my message. This is my first post on bbPress and I didn’t know if anyone would respond.

    I’m not sure this is what we are looking for but appreciate the link.

    #154616
    #154607
    rock17
    Participant

    I know it’s possible. I saw a post in trac where @johnjamesjacoby created a WordPress page under the forums directory (https://bbpress.org/forums/new-topic/) but he didn’t say how he did it.

    #154597
    Robin W
    Moderator
    #154593
    samboIT
    Participant

    Hi,

    I have installed bbPress (Version 2.5.4). I want to function auto unapproved every topics and replies from users. I meant the first posting new topic or reply must be approved by Admin then they can show to fronted. Possible?

    Im looking for any replies very soon.

    Thanks in advance!

    #154589
    Robin W
    Moderator

    Don’t know if its important but its a local install on my computer.

    oh and bbpress is not always good with local installs !

    #154586
    Robin W
    Moderator

    lots of different users here with same symptoms but probably different problems.

    Suggest you all start with

    Step by step guide to setting up a bbPress forum – Part 1

    and if that doesn’t fix, start a fresh thread so that we can fix these individually.

    #154585
    Robkk
    Moderator

    well its not really a limit on having a certain number of forums
    i think its just a limit of it being on the root page since it doesn’t have pagination.

    for example if you have over 50 forums displayed in the forum root page any additional forum will not display

    i found this function doing a search , i havent tested though.

    plop the code into your child themes functions.php file or your functionality plugin
    and change 100 to whatever you like

    function bbp_increase-forum-per-page( $args = array() ) {
    $args['posts_per_page'] = get_option( ‘_bbp_forums_per_page’, 100 );
    return $args;
    }
    add_filter( ‘bbp_before_has_forums_parse_args’, ‘bbp_increase-forum-per-page’ );

    code is from this topic

    Hitting 50 forum limit? What can I do?

    #154582
    wolfdogg
    Participant

    I have this problem after just installing bbpress for the 1st time. I’ve noticed that whatever page I have listed for ‘Forum Root’ in Settings will not respond to many of the page changes. I’ve tried adding breadcrumbs and they won’t show. I’ve tried removing the sidebar altogether and the sidebar still shows. I try changing the sidebar to a different set of widgets and it doesn’t respond.

    If I change this ‘Forum Root’, the page will then accurately respond to all changes. I’m using Enfold theme.

    #154579
    Robkk
    Moderator

    are you sure bbPress is causing the problem??

    deactivate and reactivate your plugins one at a time and check and see if the problem persists when bbPress is activated to make sure.

    #154577
    Robkk
    Moderator

    contact whatever theme your using support forum.

    bbPress adds a title out of the box, with no additional editing of files.

    it all depends on your theme.

    #154573

    In reply to: ban some users

    Robkk
    Moderator

    in a unmodified bbpress fresh install you should see the ip right around the users avatar in a topic.

    block bots if its regular people that are just acting wild go edit their profile and change it to blocked.

    #154571
    Robkk
    Moderator

    @evilhare if its a bbPress WP Tweaks plugin problem go to their support.

    if you think it could maybe your themes compatibility with the plugin go to your theme support.

    #154569
    Robkk
    Moderator

    @minoumimi

    i dont recommend users creating new topics from the admin bar or the backend unless there just keymasters and maybe moderators too.

    i would even allow only keymasters and moderators in the backend of my site.

    users should only edit the topics/replies using the admin links on each post.

    if you only do this they should only edit their own posts

    as for being the proper tools ,

    there is a tag input box by the topic if you have tags enabled

    tinymce toolbar can be activated using
    https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/

    and the revisions should show up if you activate revision logs

    attachments can be available with some plugins

    other than that the other stuff the users shouldn’t touch.

    #154567
    Robkk
    Moderator

    so if we forget

    no one forget.


    @durqrimast
    contact userpros support

    i cant test it out without buying the plugin.

    i did find this in like 20 seconds though

    http://userproplugin.com/userpro/forums/topic/integrating-userpro-profile-links-user-badges-in-bbpress/

    #154566
    Robkk
    Moderator

    try combining the two into this and try it.

    i tested in twenty-fourteen and it worked.

    #bbpress-forums ul.bbp-lead-topic li.bbp-body div.topic {
        background-color: #0099FF;
        border: 1px solid #dd6;
    }
    #154562
    Robkk
    Moderator

    @melanie-bund

    if you are a web designer from the website thats mentioned at the bottom of the website

    you can do alot of things to make it where a forum doesnt look awkward

    changing posts, voices, freshess, topics lalbes at the top to just icons

    and more depending on where your imagination takes you.

    i suggest maybe only showing the topic count in the forum archive

    and move the freshness stats below the title of each forum

    and showing only the posts stats for any forum you have just entered

    and move the freshness stats below the title of each topic.

    more info on designing can be found at the docs

    Codex

Viewing 25 results - 17,751 through 17,775 (of 64,532 total)
Skip to toolbar