Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 16,251 through 16,275 (of 64,516 total)
  • Author
    Search Results
  • wpgerd
    Participant

    Hello,

    I installed a new bbpress 2.5.5 and noticed, that there is no space between the breadcrumb and the subscription-toggle:
    Scrrenshot
    How can I add some space? With CSS or in the code? What’s the better way?
    Thanks for help in advance!

    Gerd

    #159535
    wpgerd
    Participant

    Hello Robkk,
    thanks for your reply. At first I thought it was WP Better Emails or MailPoet Newsletter. I deaktivate this plugins, but the same.
    Now I used a fresh Testinstallation of WP, installed bbpress and the same. If someone subscribe to forum, I got a Mail delivery failed notice.

    I try a little search and found in this file \wp-contetnt\plugins\bbpress\includes\common\functions.php this code:

    // Strip tags from text and setup mail data
    $topic_title = strip_tags( bbp_get_topic_title( $topic_id ) );
    $reply_content = strip_tags( bbp_get_reply_content( $reply_id ) );
    $reply_url = bbp_get_reply_url( $reply_id );
    $blog_name = wp_specialchars_decode( get_option( ‘blogname’ ), ENT_QUOTES );
    $do_not_reply = ‘<noreply@’ . ltrim( get_home_url(), ‘^(http|https)://’ ) . ‘>’;

    // For plugins to filter messages per reply/topic/user
    $message = sprintf( __( ‘%1$s wrote:

    // Strip tags from text and setup mail data
    $topic_title = strip_tags( bbp_get_topic_title( $topic_id ) );
    $topic_content = strip_tags( bbp_get_topic_content( $topic_id ) );
    $topic_url = get_permalink( $topic_id );
    $blog_name = wp_specialchars_decode( get_option( ‘blogname’ ), ENT_QUOTES );
    $do_not_reply = ‘<noreply@’ . ltrim( get_home_url(), ‘^(http|https)://’ ) . ‘>’;

    // For plugins to filter messages per reply/topic/user
    $message = sprintf( __( ‘%1$s wrote:

    So I think, the email will be generatet of bbpress. How can I prevent this Mail delivery failed notice?

    Gerd

    #159531
    awpt
    Participant

    Just tried with default theme of wordpress but nothing
    If some one tell me how to remove it from database I will reinstall bbpress but I cand find the tables too.I want to remove bbpress tables for a new fresh Installation But there is nothing about bbpress in my database and the forums with topics are there in site.com/forums

    #159528
    wpgerd
    Participant

    Hello,
    here you find informations about the two versions of language files: https://codex.bbpress.org/bbpress-in-your-language/german-deutsch-de/
    You don’t need a plugin.

    I used the DU-version of David Decker. But I think both versions work well. If you want to change something use poedit.

    Gerd

    #159526
    madvibes
    Participant

    Hi. I have inherited a site using BBpress and there are some issues with new user registration. The forum settings are to give new registered users a Participant role, and my WP default is Subscriber for new users.

    However, when somebody new registers for the forum, they are given full Admin access in wordpress. Obviously not something that is desirable.

    I’m running the latest versions of both WP and BB. Please advise!

    #159518
    Robin W
    Moderator

    Most of the filters are held in the templates that are located as follows :

    wp-content/plugins/bbpress/includes/forums/template.php
    wp-content/plugins/bbpress/includes/topics/template.php
    wp-content/plugins/bbpress/includes/replies/template.php
    wp-content/plugins/bbpress/includes/users/template.php
    wp-content/plugins/bbpress/includes/search/template.php

    There are two typically filters, one on the final function usually within the ‘return’, and one that mimics wordpress’s ‘before’ filters
    from the docs

    Near the beginning of many functions we find :

    
    // Parse arguments against default values
        $r = bbp_parse_args( $args, array(
            'before'            => '<ul class=&quot;bbp-forums-list&quot;>',
            'after'             => '',
            'link_before'       => '<li class=&quot;bbp-forum&quot;>',
            'link_after'        => '',
            'count_before'      => ' (',
            'count_after'       => ')',
            'count_sep'         => ', ',
            'separator'         => ', ',
            'forum_id'          => '',
            'show_topic_count'  => true,
            'show_reply_count'  => true,
        ), 'list_forums' );
     

    This is a common format throughout bbPress, and indeed is similar to a function used throughout wordpress.

    It uses a function called bbp_parse_args to create a filter against all the arguments.

    The filter created is in the format bbp_before_ followed by X followed by _parse_args The X is the third argument from the bbp_parse_args function – if you look at the code above you’ll see that it is actually
    bbp_parse_args ($args, Array(...), 'list_forums' )

    so in the last line we see list forums which is the X above . In practice this is the function without the bbp start bit.

    so an array filter for bbp_list_forums is bbp_before_list_forums_parse_args
    and for say bbp_get_topic_pagination would be
    bbp_before_get_topic_pagination_parse_args

    #159516
    EastDevonAlliance
    Participant

    It’s a live site with over 80 plugins to provide various bits of functionality – so this is not going to be easy.

    I do have a few bbpress-related plugins – which I can easily disable / re-enable without disrupting the main site – is it more like to be these plugins?

    Thx. Paul

    #159513
    Robkk
    Moderator

    i did find this topic that might help

    Simple Rating plugin for wordpress – get it working for bbpress?

    here is an old versions list of filters (its 2.0)

    http://etivite.com/api-hooks/bbpress/triggers/apply_filters/

    here is a gist that might be helpful (2011)

    gist.github.com/farinspace/1372637

    you can manually find topic/replies/forums filters in

    by going to through the plugin files in

    bbpress>includes>

    then choose replies/forums/topics

    then go into the template file to find all the filters used

    #159512
    Robkk
    Moderator

    try using this plugin, use the logout link from this plugin and use a custom login link for the bbPress login shortcode if you want.

    https://wordpress.org/plugins/baw-login-logout-menu/

    #159511
    Robkk
    Moderator

    @awpt

    bbPress uses the WordPress post tables.

    but to reset forum go to tools>forums>reset forums

    you should see these sub-menu items under tools

    Tools
    available tools
    import
    export
    forums

    #159508
    Robkk
    Moderator

    @yrisse3

    It could be a plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    you can also see if your theme is causing the issue but its probably more of a plugin issue..

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    #159506
    Robkk
    Moderator

    create a bbpress.php file and put it in your child theme , the default file bbPress is using has some extra code for post navigation that should be for blog posts.

    https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    you can also use CSS

    #bbpress-forums .navigation-post  {
    display:none;
    }
    #159504
    Robkk
    Moderator

    @eastdevonalliance

    It could be a plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    you can also see if your theme is causing the issue but its probably more of a plugin issue..

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    if not come back

    #159503

    In reply to: Hover Text Plugin

    Robkk
    Moderator

    there probably isnt a plugin like this for bbPress

    if the plugin works for custom post types it might work??

    you can contact the plugin developer to try to make it work on custom post types like the ones bbPress uses.

    other than that i suggest you post a job at http://jobs.wordpress.net/ and see if a developer can custom develop this for you.

    #159497
    Robkk
    Moderator

    maybe using conditionals in the user profile templates (copy these to a child theme) would do it.

    bbPress Conditional Tags

    it might is_single_user() then array the guest accounts user ID to hide the user profile information

    #159493
    Robkk
    Moderator

    It could be a plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    you can also see if your theme is causing the issue but its probably more of a plugin issue..

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    #159490
    Robkk
    Moderator

    @projectprince

    try this first

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    if the issue is only happening when only avada is the current theme then contact avada for help putting it back.

    #159488
    Robkk
    Moderator

    this should not be a problem with bbPress , but how you/something you installed changed the default from address that WordPress uses in the mail function.

    by default its wordpress@(yoursite)

    did you use a function/plugin to change the from address??

    It could be a plugin issue

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    #159487
    Robkk
    Moderator

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    if switching the theme does fix the issue , and its not a plugin issue then contact your theme author for help.

    #159486

    In reply to: Best anti spam plugin

    Robkk
    Moderator

    for registrations i use bruteprotect it helps out alot.

    bruteprotect + akismet = <3

    plus combine that with bbPress’s spam control functions (throttle posting/time to edit)

    bbpress uses the comment moderation settings https://codex.bbpress.org/moderation-and-blacklisting/

    so combine that with the blacklist.txt from here and you should be fine

    https://github.com/splorp/wordpress-comment-blacklist

    casnbug
    Participant

    My page at http://www.ncfblues.org is using the evolve theme. I have installed bbpress and created a forums page but the forums will not show. I can’t figure out why since the evolve theme claims to be 100% compatible with bbpress. Also, if the user clicks their name on the bbpress user profile link it’s not taking them to their profile page. I would greatly appreciate some help and guidance.

    #159483
    wpgerd
    Participant

    Hello,

    when someone create a new post, my bbpress sent out an email to the subcribers of this Forum and to an email named noreply@radenavigator.ch. Why does this happen?
    The Domain of my Forum is Tradenavigator.ch not radenavigator.ch. So the mail have to be noreply@Tradenavigator.ch. Why try bbpress to sent to this adress, I did not specified this.

    Possible I made a mistake during Installation of bbpress and forgot the T, but I correct this. Can’t fount any wrong email in the Settings. Search the mql-Database for this string, nothing found 🙁

    Can someone explain to me why this email was generated? And how can I solve this Problem?
    thanks!

    Gerd

    WP: 4.11 bbpress: 2.5.5 Theme: Child of Twentythirteen

    #159480

    In reply to: Starting with bbpress

    Robin W
    Moderator

    bbpress works as a plugin to wordpress, so you set up a wordpress site and add bbpress.

    #159474
    rbrynest
    Participant

    Whenever a new user tries to register or login to my site, it just shows a white page with “blocked” written on it.

    I am using bbPress forum plugin and have the “Allow anyone to register” checked.

    My register page is using the register shotcode and as a login I use the (bbpress) login widget in a sidebar.

    I have checked for conflicts by deactivated all plugins but bbpress and switched to the default twentytwelve theme to see if this fixes. Unfortunately with negative results.

    Any idea what’s going on?

    Register URL: http://www.oppfraavgrunnen.no/registrer-deg/
    Login URL: http://www.oppfraavgrunnen.no/bbpress/

    Thanks in advice

    Regards
    Rune

    #159473

    In reply to: Best anti spam plugin

    jezza101
    Participant

    I wrote this up a while back. Hope it is useful.

Viewing 25 results - 16,251 through 16,275 (of 64,516 total)
Skip to toolbar