Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 31,876 through 31,900 (of 64,534 total)
  • Author
    Search Results
  • #103104
    Oleksandr Kramer
    Participant
    #98004
    Oleksandr Kramer
    Participant
    #113583
    JenniferNM
    Member

    Is there some sort of code we could put into one or more of the bbpress php files to exclude it?

    shawnkelshaw
    Member

    I have a host of problems and not sure really where to begin. Normally, I’d simply try uninstalling the bbpress plugin, but I only get all the same settings and experiences back when I try to start over. Here’s a few of the problems I’ve got:

    1.) We’d like to use the New Site Wide Forums option (vs Forums for Groups). My first question is this an either or scenario or do you have to use the Forums for Groups? I always have a “Use Existing” option for Groups and there is no uninstall button available. When I install the Site Wide and return back to the buddypress forums tab, it still reflects the Groups…

    2.) Regardless of the option selected above, I can not get a Forum page to display…I only get 404. Yes. I’ve created a Test Forum instance and I’m using the “View” option to check it out. 404 error. (it is published and public, I’m logged in as admin)

    If I were to try deleting the tables from the database, uninstalling the plugin and manually removing all server side files, would that help to start over? If so, what tables get removed??

    Thanks in advance.

    s

    #112080
    dannyjimmy
    Participant

    I’m having a bit of trouble with this as well. And I too am on a BP install, though it would seem to me that it shouldn’t matter.

    I used it like this:

    - [bbp-login]

    - [bbp-single-topic-tag id="35"]

    - [bbp-single-topic-tag id="link"]

    - [bbp-single-topic-tag $id="35"]

    - [bbp-single-topic-tag $id="link"]

    - [bbp-single-topic-tag id=$topic_id]

    - [bbp-single-topic-tag id=35]

    (this is when I found the codex file for bbpress shortcodes at https://codex.bbpress.org/shortcodes/ and formatted accordingly)

    - [bbp-single-topic-tag id=$35]

    - [bbp-single-topic-tag id=$tag_id]

    And I got no forums rendered. Very confusing, since the last two were copy paste from the codex.

    You can change the forums slug in your bbPress setting. Just navigate to Setting > Forums in your dashboard and change the default value in “Archive Slugs” & “Single Slugs”

    It’s recommended that you keep the “Single Slugs” enabled, since it’s what differentiate between a topic, tag, reply & user. Just change it to something different.

    spidersilk
    Member

    I’m in the process of converting a standlone BBpress 1.1 installation into the 2.02 plugin version (well, really, recreating it from scratch in the plugin version, because the importer apparently doesn’t work if your blog actually has any users or content).

    And I’ve run into a problem – the default permalink structure for the BBpress plugin is really bizarre. It adds a “forums” slug for the forums area, which is fine and to be expected, but then it also insists on adding an additional “forum” slug before the name of each forum, so that instead of a normal URL like example.com/forums/announcements, you get example.com/forums/forum/announcements, which looks weird and awkward. I tried just removing the forum slug, but that left a double slash in the URL, which my web browser then reduced to a single slash, resulting in a 404 error.

    And for posts within forums, instead of the sort of URL you would normally expect – i.e. for a post in the announcements forum, something like example.com/forums/announcements/welcome, or example.com/forums/announcements/12345 or whatever, you have example.com/forums/topic/welcome – there doesn’t appear to be any way to associate the posts with the actual forum they’re in.

    Is there any way to fix this? Obviously the “forums/forum” thing is the most important – having the completely useless “topic” slug in the post URLs is annoying and pointless, but the “forums/forum” thing makes it look like I was drunk when I set the forums up or something – I really can’t let it go live with a glitch like that in the URLs. But I’d like to fix the topic issue too if possible. Any ideas?

    #113511

    In reply to: bbpress.2.0.2 Arabic

    Faisaal
    Member

    !!!

    no one knows how to help?

    #44662
    neodoxa
    Participant

    Is there a way to add total post count and roles (moderator, etc.) under the avatars/usernames of users in the forum?

    I’m using the BBPress plugin with a Buddypress / WordPress site.

    Thanks.

    #113510
    kennymcnett
    Member

    Thanks for looking at this, jaredatch. Buddypress was overkill for what I needed and was also breaking my custom theme. Some jquery conflict I didn’t want to find.

    For any others out there, I integrated bbPress with s2member permissions successfully. I posted my solution on the s2member forums:

    http://www.s2member.com/forums/topic/a-few-questions-before-i-buy-the-pro-version/#post-13113

    Anyone?

    #113509
    kennymcnett
    Member

    I considered Buddypress, but it’s way more robust than what I’m needing, and installing it was breaking my custom theme (jquery conflict somewhere).

    Thanks for looking at this.

    For anyone else out there, here’s my solution for restricting bbPress access using s2member. In short, this checks if the current user has access to the most distant ancestor of the current page. For example:

    Level 1 Forum/Category > Subforum1 > Subcategory > Subforum2 > Current Topic

    No matter which page they arrive at in the tree, they must have access via s2member to the top-most level. Then it’s a simple matter of assigning a ccap to that Forum, or a membership level.

    1. Include the following in your functions.php file

    2. Include a call to the function in EACH of your bbPress template files BEFORE the template calls for the forum content. Match the HTML structure of the error message to suit your theme. You need to include closing tags for any open divs.

    3. Test!

    /******* bbPress Forum Access *******/

    function checkForumAccess() {

    if(get_post_type() == 'forum' OR get_post_type() == 'topic' OR get_post_type() == 'reply') { // check if user is viewing a forum page. If so, continue.

    //check if they have access to the top-most parent forum/category (both are Pages in wordpress). If not, show the error verbiage. If they have access, continue and show the content like normal

    $parent = array_reverse(get_post_ancestors($post->ID)); // get an array of all the parent pages in order from most distant to closest.

    $first_parent = get_page($parent[0]); //get the first page in the array, which is the most distant parent

    $int = apply_filters(‘the_ID’, $first_parent->ID); //filter the $first_parent to get only the wordpress page/post ID, which is an integer like 49 or 565. store it as a variable $int

    if (!is_page_permitted_by_s2member($int)) { // this is an s2member function. Check if the current user can access the $first_parent, via the stored page/post ID in the $int variable

    // here comes your custom error message. Remember to escape any apostrophes

    echo ‘

    <div>

    <h1 class=”entry-title”>Sorry!</h1>

    <div class=”entry-content”>

    <p>It looks like you don’t have access to this forum.</p>

    <p>If this is an error and you should have access, please contact us here: (contact URL)

    </div>

    </div><!–.postWrapper–>

    </div><!– #content –>

    </div><!– #contentWrapper –>

    </div><!– #primary –>

    ‘;

    get_sidebar();

    get_footer();

    exit; // Important. This prevents the rest of the page (the secure forum content) from displaying

    }

    }

    }

    #111246
    kennymcnett
    Member

    thanks phrough!!

    #44639
    cavenewt
    Participant

    I’ve spent a couple of hours looking without much result, so I will ask the question.

    My bbpress standalone 1.0.2 forum was using Human Test quite successfully up until last week, when it mysteriously quit working. It thinks everybody is a nonhuman. The few spam posts that appeared I did not mind deleting manually, then I would manually delete that user also.

    Now I am getting about 50 new registrations every night (normally I get zero to one per day). Not a lot of spam posts, oddly enough.

    So next I tried Akismet. It boasted that it was blocking 25 spams a night. But there is nowhere to check these spams–really? An email to the Akismet folks got me the reply that they don’t have a clue where bbpress stores spams.

    I would much rather block registrants than posts. Does bbpress 2.x have any protective measures built in, or are there any good plugins? Does 2.x play nicer with Akismet?

    #113498

    In reply to: BBpress will continue?

    cavenewt
    Participant

    ‘This questions sound a bit silly, but is it helpful if someone tag a spam topic as “spam”, “spams”, “spamming”, or “spammer”? (I always do this when I see a spam topic)’

    That explains why, when I come here looking for spam-fighting solutions, I turn up so much spam. :(

    #113470
    POS2012
    Participant

    IF you use bbPress 2.0 or newer, you can just install BuddyPress, and during the install you can tell BP that you have an existing forum. I did that, and BP + bbP integrated well.

    #44637
    Nate
    Participant

    Problem: Remove sidebar from bbPress

    Solution: My theme has a Full Width option

    I know that if I input my shortcode into a Page, it will display the forum in the Template of my choosing. Presto, the forum index is within Full Width.

    Yet when the user decides to choose a forum, they’re relegated to the Theme’s default Template, which includes the sidebar.

    Meeeeh.

    Is there a quick and dirty way to tell bbPress to use the Full Width template that’s already available?

    I recently noticed that when I try to start a topic or posting a reply, it’s taking about 30+ second before the topic/reply is show up. If you try to tell me there may be a “bad plugin” and try to disable all of it except bbPress, save it. I have tried the following:

    1. Using different browser.

    I find out that when I try to use Firefox 12.0 to post, it’s loading extremely slow. But this is not happening in Internet Explorer 9 or Google Chrome 18.

    Try to start Firefox in safe mode? Yes I have tried to do that but it doesn’t make a difference.

    2. Using different user/computer.

    It’s still the same.

    3. Try to post a comment in a normal post.

    I was able to comment a post without any problems, so I think it may be a “bad plugin” problem.

    4. Disable all plugin (except bbPress & BuddyPress)

    But the same thing happen. FYI I don’t edit either the bbPress or BuddyPress files.

    5. Using different theme.

    I replace my modified custom community theme with BuddyPress Default theme and see if I putting bad codes in my theme. But this doesn’t solve problem even I tried other themes.

    6. Change permalink structure.

    It doesn’t make any changes, and I don’t think it will help.

    7. Reinstall WordPress, bbPress & BuddyPress

    Still doesn’t make any changes.

    8. Create a new install in another domain.

    I use http://scirefs.com/ as my main and http://www.scirefs.org as a sandbox (with the same configuration as in SCIREFs.com) with only bbPress and BuddyPress activated. But everything works fine in SCIREFs.org with either bbPress 2.02 or 2.1 and I have no issue with Firefox 12.

    9. The Cloudflare……

    Since I have Cloudflare as my CDN for SCIREfs.com but not SCIREFs.org, I tried to remove SCIREFs.com from Cloudflare and add SCIREfs.org to it and see what happens. The result: The issue with Firefox at SCIREFs.com disappear but SCIREfs.org is now facing the old issue.

    Do anyone here have any ideas what’s wrong with it? Or someone here is facing the same problem? This seems to be the first and the only problem I can’t figure it myself.

    You can login to SCIREFs.org using the following information:

    Username: demo

    Password: demo

    URL of the forums: http://www.scirefs.org/test-forums

    And try to start a topic or post a reply using Firefox and see if it’s happening to you.

    pimarts
    Participant

    I don’t know if it’s a “great” example, but http://www.swnk.org/ is running on WordPress + BuddyPress + bbPress.

    ZedsDed
    Member

    Hello! I’d love to see some examples of sites that utilize WordPress for its blog and bbPress for its forum/messageboard. I’m poking around this forum now for examples but would love to see any that you may know of. Thank you :)

    #113497

    In reply to: BBpress will continue?

    neviga
    Member

    That seems to be a workaround but as long as the post keeps in the list and not moved/removed to a different queue, it will stay there till a moderator takes action I think.

    #113496

    In reply to: BBpress will continue?

    This questions sound a bit silly, but is it helpful if someone tag a spam topic as “spam”, “spams”, “spamming”, or “spammer”? (I always do this when I see a spam topic)

    Stephen Edgar
    Keymaster

    The page /forums is a generic page part of bbPress.

    You can create your own page/s and use the bbPress Shortcodes

    https://bbpress.org/forums/topic/bbpress-20-shortcodes

    Go to Appearance > Pages and give it a title (Discussion, The Teams, Leagues etc)

    Then in the content of that page use the bbPress shortcodes with how and what you want on that page.

    This for example would show what you currently have on /forums plus add the ‘new topic form’ below that list.

    [bbp-forum-index]

    [bbp-topic-form]

    You could also create a page called ‘New Topic’ and just have [bbp-topic-form] on that page and then using the same method from Jarad above add those pages as menu items.

    #113512
    Stephen Edgar
    Keymaster

    Head on over to http://bbpress.trac.wordpress.org and have a read of the links there.

    Perform a search to see if there are any similar and/or open bugs already

    https://bbpress.trac.wordpress.org/search

    To submit a bug and bug fix https://bbpress.trac.wordpress.org/newticket

    #109942
    kennymcnett
    Member

    Thanks mattsimo and jaredatch. Worked the charm.

    Here are all of the $args and the defaults, FYI (pulled from bbPress core file: bbp-common-template.php)

    // HTML
    'before' => '<div class="bbp-breadcrumb"><p>',
    'after' => '</p></div>',
    'sep' => is_rtl() ? __( '&lsaquo;', 'bbpress' ) : __( '&rsaquo;', 'bbpress' ),
    'pad_sep' => 1,

    // Home
    'include_home' => $pre_include_home,
    'home_text' => $pre_front_text,

    // Forum root
    'include_root' => $pre_include_root,
    'root_text' => $pre_root_text,

    // Current
    'include_current' => $pre_include_current,
    'current_text' => $pre_current_text

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