Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 126 through 150 (of 64,336 total)
  • Author
    Search Results
  • #243251
    issobruno
    Participant

    after hours I get this code that works so fine!!

    function bbpress_comentarios_ajax() {
        ?>
        <script type="text/javascript">
            jQuery(document).ready(function($) {
                $('#bbp_reply_submit').click(function(e) {
                    e.preventDefault(); // Impede o recarregamento normal
    
                    var form = $(this).closest('form');
                    var formData = form.serialize();
    
                    $.post(form.attr('action'), formData, function(response) {
                        // Recarrega só a área dos comentários
                        $('.bbp-replies').load(window.location.href + ' .bbp-replies > *');
                        form[0].reset(); // Limpa o campo de resposta
                    });
    
                });
            });
        </script>
        <?php
    }
    add_action('wp_footer', 'bbpress_comentarios_ajax');

    enjoy 🙂

    #243247
    Robin W
    Moderator

    thanks for all that – I’ll take a good look when I get back

    as a by the by, they might ask you to change the title – they made me change one I inherited which started with ‘bbpress’ they said made it look like it was owned and written by bbpress whose name is owned by WordPress. There as plenty of plugins that do this already and haven’t been asked so you may get away with it, but I had to change it from ‘bbPress Topics for Posts’ to ‘Post Comments as bbPress Topics’

    #243245

    Hi @robin-w,

    Feel free to study the code at https://github.com/webmandesign/bbp-block-theme

    Thank you for your fix via your bbp style pack plugin. As far as I understand, your plugin also provides means to style bbPress plugin. In my plugin this is not an option – it really just enables bbPress for block themes.

    For how the plugin actually works check the info in readme.txt file.

    #243243

    Just in case anyone is looking for a solution, I’ve just released a plugin fixing the bbPress display in block themes.

    The plugin needs to undergo a WordPress plugins repository review, which queue times are long currently, before being available at WordPress plugin repository. So, meanwhile you can download bbPress for Block Themes plugin at GitHub.

    #243242

    Just in case anyone is looking for a solution, I’ve just released a plugin fixing the bbPress display in block themes.

    The plugin needs to undergo a WordPress plugins repository review, which queue times are long currently, before being available at WordPress plugin repository. So, meanwhile you can download bbPress for Block Themes plugin at GitHub.

    #243241

    Just in case anyone is looking for a solution, I’ve just released a plugin fixing the bbPress display in block themes.

    The plugin needs to undergo a WordPress plugins repository review, which queue times are long currently, before being available at WordPress plugin repository. So, meanwhile you can download bbPress for Block Themes plugin at GitHub.

    #243240

    Just in case anyone is looking for a solution, I’ve just released a plugin fixing the bbPress display in block themes.

    The plugin needs to undergo a WordPress plugins repository review, which queue times are long currently, before being available at WordPress plugin repository. So, meanwhile you can download bbPress for Block Themes plugin at GitHub.

    #243225
    Robin W
    Moderator

    pretty sure that it is LearnPress – bbPress Integration

    We have submitted a change required to Learndash.

    If you are into code the fix is in learndash-bbpress\includes\class-dependency-check.php line 119 – the line needs changing from

    $plugin_header = get_plugin_data( trailingslashit( str_replace( '\\', '/', WP_PLUGIN_DIR ) ) . $plugin_key );
    to

    $plugin_header = get_plugin_data( trailingslashit( str_replace( '\\', '/', WP_PLUGIN_DIR ) ) . $plugin_key, false, false );

    This then prevents translations being loaded at that point (too early) and hopefully fixes the issue.

    #243214
    Robin W
    Moderator

    As the text says :

    Some themes or plugins also add a login page that users use to login, in this case select “bbPress Login or login using a specific page” and put the full url in below. Whether this works will depend on the theme or plugin being used, so I cannot guarantee that this will work

    and looks like yours doesn’t – sorry only so much i can do 🙂

    #243212
    bobjgarrett
    Participant

    Done that but it still goes to a 404 error page. I am using a specific log in page not WP nor bbPress. The link in the email sent goes to a “test_content” page.

    wilsonintexas
    Participant

    I am working on https://www.dallasgemandmineral.org/
    wordpress version 6.7.1
    bbpress 2.6.11
    I do have Akismet Anti-spam: Spam Protection v 5.3.5
    I am a newbe and lost
    I have some forums, and Akismet Anti-spam: Spam Protection is correctly marking things as spam.

    I am getting spammed, and anti spam is catching them.

    I want to set u the forum so only registered users can post but anyone can reply.
    I found one setting that limits posts and replies to registered users,

    the situation is this:
    Anouther rock club donated equipent, on the condition that if we sell it their members are able to bid. I set up a forum to sell things, by posting a reply to an item for sale.

    I had to remove the setting that only registered users can post and reply, because to register you have to be a member of our club.

    So is there a way to limit new topics to registered users (to cut out the spam) but allow anyone to reply?

    #243150
    wilsonintexas
    Participant

    I am working on https://www.dallasgemandmineral.org/
    wordpress version 6.7.1
    bbpress 2.6.11
    I do have Akismet Anti-spam: Spam Protection v 5.3.5
    I am a newbe and lost
    I have some forums, and Akismet Anti-spam: Spam Protection is correctly marking things as spam.

    But I cannot find a way to select them and delete them in bulk.
    I can select each one, edit it, mark it as trash, then delete it…. but I have over 1000

    In this post I want to find the way to select topics in a forum and bulk delete them

    #243142
    painlessseo
    Participant

    Hi @akira010203, I’m fairly new to bbpress and I don’t understand why we need to use Settings -> Discussion -> Comment Moderation to allow links in bbpress Replies.

    Isn’t that setting for Comments?

    I have some users/participants whose replies will go straight to pending if they post ONE link despite that I set ‘Hold a comment in the queue if it contains 2 or more links’.

    How does the anti spam code logic work in bbpress? I’m quite confused.

    Your input will be greatly appreciated!

    #243138
    bobjgarrett
    Participant

    If an unlogged in visitor clicks a link to a private bbpress forum page they get the “oops no such page message”.
    Is it possible to redirect them to the login page or message that at least says the page exists but they need to log in?

    #243094
    wpneedsupport
    Participant

    How to subscribe existing wp users to a newly created forum? Currently new users are auto-subscribed to existing forums, but there does not seem to be a way to subscribe existing wp users to a new forum. Forums on our site are viewable via log-in only. https://weightinclusivemedicine.org/forums/

    Is there an easy way to do it through wp database?
    Using 2.6.11 bbpress WordPress 6.7.1

    Robin W
    Moderator

    bbpress has hundreds of hooks.

    Would be better for you to list exactly where you want to insert

    Marisa
    Participant

    I want to insert custom text/graphics at specific positions on specific pages (or all pages) in the bbPress forum.

    Please can you list the custom hooks for this?

    Thanks.

    #243079
    manojmohandev
    Participant

    Looks like it was fixed way back when codebase was not modularized to this extent. Here is the ticket that was closed some 13 years back with commit that fixes it.

    If you observe these check doesn’t exist anymore before updating last reply id and all.

     // Update if reply is published
            if ( bbp_is_reply_published( $reply_id ) )
                    update_post_meta( $topic_id, '_bbp_last_reply_id', (int) $reply_id );
    
    #243076

    In reply to: Private messages

    Here are a few options:

    bbPress Messages: This plugin offers a simple yet powerful private messaging system tailored specifically for bbPress. It includes features like message caching for faster performance, background processing for tasks such as email notifications, and support for shortcodes and widgets.
    JA.WORDPRESS.ORG

    Better Messages: A comprehensive real-time private messaging system compatible with bbPress, BuddyPress, and other WordPress platforms. It provides features like live chat, file uploads, emoji support, message editing and deleting, and even audio and video calls.
    JA.WORDPRESS.ORG

    bbPress – Private Replies: This plugin allows forum participants to mark their replies as private, meaning only the original poster and forum moderators can view the content. It’s particularly useful for support forums where users may need to share confidential information.

    #243075

    Topic: Private messages

    in forum Installation
    triffy44
    Participant

    Hello,

    Is there a plugin to add to bbpress so you can sent users private messages ?
    I did not find any answer in the search engine.

    Thanks a alot

    #243074
    swinggraphics
    Participant

    On the Topics archive page, the pagination links are broken, going to a forum. This appears to be due to maybe_map_permalink_to_group(). My solution is to add a filter after BBP_Forums_Group_Extension->topic_pagination() to correct the base parameter:

    
    /* Fix BBPress pagination */
    function my_topic_pagination_fix( $r ) {
    	if ( is_post_type_archive( 'topic' ) ) {
    		$r['base'] = bbp_get_topics_pagination_base();
    	}
    	return $r;
    }
    add_filter( 'bbp_topic_pagination', 'my_topic_pagination_fix', 11 );
    
    
    eyingayannick
    Participant

    Salut à tous,
    J’utilise bbpress et le thème Astra. Je voudrais limiter le nombre de réponse visible à un sujet lorsqu’on est pas connecté. Que celui qui ouvre un sujet voit juste 2 réponses.Et lorsqu’il se connecte il voit le reste.

    Besoin d’aide

    #243051
    Robin W
    Moderator

    Thanks

    This is just a warning that WordPress 6.7 introduced.

    bbpress in itself does not issue that warning, so I’d suspect that another plugin is affecting this.

    so you need to test to see which other plugin or your theme is doing this.

    I’d start with loco translate and LearnPress – bbPress Integration as likely candidates.

    If not you’ll need to work out which

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #243050
    marbaque
    Participant

    Not just that. Here is the full list:

    • Advanced Custom Fields Versión 6.3.12 por WP Engine
    • Akismet Anti-spam: Spam Protection Versión 5.3.5 por Automattic – Anti-spam Team
    • bbPress Versión 2.6.11 por The bbPress Contributors
    • BuddyPress Versión 14.3.3 por The BuddyPress Community
    • CoBlocks Versión 3.1.14 por GoDaddy
    • H5P Versión 1.16.0 por Joubel
    • LearnPress Versión 4.2.7.5.1 por ThimPress
    • LearnPress – bbPress Integration Versión 4.0.5 por ThimPress
    • LearnPress – BuddyPress Integration Versión 4.0.2 por ThimPress
    • LearnPress – Collections Versión 4.0.1 por ThimPress
    • LearnPress – Coming Soon Courses Versión 4.0.6 por ThimPress
    • LearnPress – Course Review Versión 4.1.4 por ThimPress
    • LearnPress – Prerequisites Courses Versión 4.0.8 por ThimPress
    • Loco Translate Versión 2.7.1 por Tim Whitlock
    • PublishPress Capabilities Versión 2.18.2 por PublishPress
    • Safe SVG Versión 2.3.1 por 10up
    • Site Kit by Google Versión 1.145.0 por Google
    • WP Mail SMTP Versión 4.3.0 por WP Mail SMTP
    • WP Rocket Versión 3.18 por WP Media
    • WP User Manager Versión 2.9.12 por WP User Manager
    #243049
    Robin W
    Moderator

    so just bbpress and learnpress?

Viewing 25 results - 126 through 150 (of 64,336 total)
Skip to toolbar