Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 30,801 through 30,825 (of 64,535 total)
  • Author
    Search Results
  • #115598
    MikeySpice
    Member

    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

    #115592
    rashid93
    Member

    hello and thanks for reading this . i want to know if there was any way to insall bbpress on my site at : enter link description here

    #115579

    In reply to: Videos in BBPress

    It is new in 2.1, which should not ‘break your website.’ If it does, I’d like your help to figure out exactly what’s going on.

    #115577

    In reply to: bbpress and qtranslate

    If qTranslate purposely supported bbPress, it’s possible a regression or change in 2.1 broke something. qTranslate does a few unconventional things with the_content and wp_editor, so I’m happy to see they worked together at all. ๐Ÿ™‚

    #115575

    In reply to: Videos in BBPress

    Prometheus Fire
    Participant

    I don’t have that. Is that new in version 2.1?

    (the new version breaks my website so I’m using 2.0.3 still until I can troubleshoot and figure out what is wrong)

    sangdedi
    Member

    hi All, I just wonder that is there any plugin for bbpress plugin version (2.0+) like bestanswer plugin on bbpress standalone version ? I want to modify my bbpress forum into such a site like yahooanswer so users can choice which the best answer is.. thank you for your answer ๐Ÿ™‚

    • This topic was modified 13 years, 12 months ago by sangdedi.
    #115563

    Correct. You see that warning, because you WordPress allows you to post anything you want to. Even potentially malicious JavaScript or the like. It’s a feature, and bbPress is politely reminding you of it.

    #115562

    In reply to: bbpress BAD WORDS

    Use WordPress’s discussion settings. bbPress will obey them.

    #115551
    fitninja
    Member

    I am very green but have the same issue, my theme doesn’t use the fancy editor for forum posts and replies. That said, I found that the form-reply.php and the form-topic.php files in my theme’s bbpress folder affects those pages. I backed them up then deleted them from my theme’s bbpress folder and (I assume) the form-reply.php and form-topic.php files from the default bbpress theme took over and I got back the fancy editor.

    Using the default bbpress theme’s form-reply.php file as the example: open the file and look for the section that starts with the following lines:

    if ( !function_exists( ‘wp_editor’ ) ) : ?>

    (note: I had to put a space between the “< " and the "?" in that first line so that the code would show here, so if you want to search with it, remove that space)

    The section ends with:
    (again, I put a space between the “<" and the "?")

    I restored my theme's files and bumbled my way through adding the lines. On my first go at it I ended up with both the fancy and my theme's editors on the same page! LMFAO!! Haven't played with it anymore as yet so you'll have to see what you can do with it.

    #115550

    In reply to: bbpress BAD WORDS

    There are many plugins available in the WordPress.org repository that will accomplish this. Here’s one to try

    https://wordpress.org/extend/plugins/wp-content-filter/

    #115548

    Are you using bbPress 2.1 with bbp-theme-compat?

    #115546
    Lynq
    Participant

    bbPress adds this notice in because you are an admin of the site I believe.

    #115544

    Topic: bbpress BAD WORDS

    in forum Plugins
    fagiano1973
    Participant

    WHY there is not a censor for bad words? the ones I found are censor and c*nsor but not be used because they create a fatal error with the current versions of bbpress (on buddypress), they are probably too old.
    I know php, i can create a little function for bad word but what are the file need modify?
    help me, please.
    thank you,

    jeffvand
    Participant

    I have created a page template to call a custom sidebar for bbpress. It works great on the archive-forum.php page, but when I put the same code on the single-forum.php or single-topic.php page I am getting a “Oh bother! No forums were found here!” message where the sidebar should be.

    My sidebar is called sidebar-bbpressside.php. I am calling it with the following code:

    get_sidebar('bbpressside'); 
    

    Any thoughts how I can get that working on the sub-pages too? Weird.

    Thanks!

    • This topic was modified 13 years, 12 months ago by jeffvand.
    • This topic was modified 13 years, 12 months ago by jeffvand.
    • This topic was modified 13 years, 12 months ago by jeffvand.
    craftcore
    Member

    Hi!

    I have upgraded to the most recent versions of BuddyPress, bbPress, and WordPress.

    I see on loop-single-reply.php that the information displayed after the avatar is called by

    do_action( ‘bbp_theme_after_reply_author_details’ );

    My plan was to use the information in http://codex.bbpress.org/bbp_theme_after_topic_author/ but apply it to the bbp_theme_after_reply_author_details action instead.

    Where does the code provided in the codex example actually need to go? bp-custom.php? Or somewhere else? Is this even the right way to go about adding it?

    Any tips would be great, thanks!

    • This topic was modified 13 years, 12 months ago by craftcore.
    #115533
    Fuchsy
    Member
    Fuchsy
    Member

    After spending some hours with the same strange behaviour i finally found a solution:

    This error happens when you’r running WP in a multisite-environment, only on the mainsite AND if you added define('NOBLOGREDIRECT', 'http://example.com'); to your wp-config.php

    Adding remove_action( 'template_redirect', 'maybe_redirect_404' ); to your themes functions.php will stop that annoying bug.

    I guess this error happens because maybe_redirect_404() is fired before the profile-pages are build. the network administrator (or sub-sites) will be never redirected by NOBLOGREDIRECT, thats why the bug never happends when a network-admin clicks on a profile-link or when you’r running bbpress on a sub-site in your WP-network.

    More about the NOBLOGREDIRECT-fix (it also helps showing 404-errors): http://frumph.net/2010/06/05/wordpress-3-0-multisite-subdomain-installation-noblogredirect-behavior-fix/

    • This reply was modified 13 years, 12 months ago by Fuchsy.
    Aron Prins
    Participant

    Quoting JJJ:

    These errors have come up a few times here recently. Itโ€™s a regression in a way, but itโ€™s also the themes doing-it-wrong, and using bbPress loops outside of their intended purposes. My fault for not documenting them more in-depth, or protecting the data from being used incorrectly.

    Itโ€™s most likely because of the themes using bbp_has_replies() outside of the main query loop. More helpful than the error itself would be the backtrace of what actually caused the error to occur.”

    Call to undefined method stdClass::have_posts()

    PS: Looks like a theming/functions.php issue to me ๐Ÿ˜‰

    #115496
    Whalen
    Member
    galynsky
    Member

    I have a problem with conversion.

    I use in my site http://ice-halo.net WordPress 3.4.1 and intergated bbPress 1.0.2 http://forum.ice-halo.net with 1 date base (wp_, bb_ tables). Site on russion language.

    try to export – nothing.
    _bbp_converter_start 0
    _bbp_converter_step 4
    _bbp_converter_query
    SELECT convert(forums.forum_id USING “utf8”) AS forum_id,convert(forums.forum_parent USING “utf8”) AS forum_parent,convert(forums.topics USING “utf8”) AS topics,convert(forums.posts USING “utf8”) AS posts,convert(forums.forum_name USING “utf8”) AS forum_name,convert(forums.forum_slug USING “utf8”) AS forum_slug,convert(forums.forum_desc USING “utf8”) AS forum_desc,convert(forums.forum_order USING “utf8”) AS forum_order FROM bb_forums AS forums LIMIT 0, 10

    try to exec _bbp_converter_query – it works on myadmin.

    What can I do to convert?

    #115492

    Hi Aron

    my apologies for lack of info – using WordPress 3.4.1. and latest version of bbpress

    have reinstalled and rolledback several times in 2 weeks and cant resolve

    any help appreciated

    Alan

    markusbb
    Member

    Hi netweb

    Thank you for replying.

    I have bbpress standalone and I want to migrate to bbpress plugin. When installing the bbpress plugin, then I go to tools>Forums to import the forums from bbpress standalone. At the conversion phase the converstion hangs when reach lines 700. This is the issue. I tried in on a different machine, with different installations but no luck. The thing is that when I am converting again, and I select the option “Purge all information from a previously attempted import” the conversion window shows that it deletes topics that are more than 700 line range. That means it has passed those lines but did not show me that. In any case the conversion does not work for me.

    Please let me know if you need further information.

    Thank You

    Stephen Edgar
    Keymaster

    We would need more detailed information from you to be able to reproduce the problem you are having.

    markusbb
    Member

    Hi John James Jacoby

    Is there any update on the issue (above) regarding the conversion from bbpress standalone to plugin ?

    I need to migrate asap thus any updates on this would be very helpful.

    Thank you in advance

    #115479
    markusbb
    Member

    Hi guys

    I have Akismet installed and I want to delete all the spam posts. The thing is that I cannot find an option to set Akismet to automatically delete them. Neither there is an option delete all, unless I do it manually which will take some very long time. I was wondering how can I delete all spam from Akismet in bbpress.

    I want to mention that I am using BBpress standalone version.

    Thank you in advance

    • This topic was modified 13 years, 12 months ago by markusbb.
    • This topic was modified 13 years, 12 months ago by markusbb.
Viewing 25 results - 30,801 through 30,825 (of 64,535 total)
Skip to toolbar