Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 9,001 through 9,025 (of 64,535 total)
  • Author
    Search Results
  • #184209
    LNAngel
    Participant

    Hi, just to follow up (as this issue is the bane of my existence), I have yet another user who this time, no matter what permissions she has, can no longer leave new posts, but CAN leave a reply.

    I’m completely at a loss for what’s getting hung up here – and it’s always my more active users (which makes me think it’s some caching issue, but all caches have been cleared, we’ve tried incognito, etc.)…and I would think they wouldn’t be able to post PERIOD, not be able to post replies but no posts.

    If any genius occurred to the bbPress team in the past few months, please let me know.

    I know you mentioned listing out everything – everything is 100% up to date. I could definitely list all of my plugins but I have quite a few…and I would think if a plugin was interfering it would be affecting ALL users, no?

    #184191
    mrcanoa
    Participant

    Hi bb Team,

    I found a bug, maybe, on bbpress ver.: 2.5.12 if I use action bbp_author_metabox

    I try to add some user info on metabox but if I call this:

    add_action('bbp_author_metabox', array($this, 'bbp_author_details'));
    function bbp_author_details($post_id) {
    	echo "<p>Test</p>";
    }

    in html code I’ve this on start tag:
    `<p>Test</p><!DOCTYPE html>
    <!–[if IE 8]>`

    and on the right place:

    <div id="bbp_author_metabox" class="postbox " >
    <button type="button" class="handlediv button-link" aria-expanded="true"><span class="screen-reader-text">Commuta il pannello: Informazioni autore</span><span class="toggle-indicator" aria-hidden="true"></span></button><h2 class='hndle'><span>Informazioni autore</span></h2>
    <div class="inside">
    		<p>
    			<strong class="label">ID:</strong>
    			<label class="screen-reader-text" for="bbp_author_id">ID</label>
    			<input type="text" id="bbp_author_id" name="post_author_override" value="xxxxx" data-ajax-url="xxxx" />
    		</p>
    <p>
    		<strong class="label">IP:</strong>
    		<label class="screen-reader-text" for="bbp_author_ip_address">Indirizzo IP</label>
    		<input type="text" id="bbp_author_ip_address" name="bbp_author_ip_address" value="xxxxxx" disabled="disabled" />
    	</p>
    	<p>Test</p></div>
    </div>

    I found that do_action( ‘bbp_author_metabox’, get_the_ID() ) it’s called twice:
    -on author_metabox function (bbpress/includes/admin/topics.php)
    -on bbp_author_metabox function (bbpress/includes/admin/metaboxes.php)
    -on author_metabox function (bbpress/includes/admin/replies.php)

    This cause html error code.

    I think it’s name error on bbpress/includes/admin/topics.php and should be do_action( ‘bbp_author_attributes_metabox’, get_the_ID() );

    Thank you
    David

    #184183
    jvolavka
    Participant

    The error is new since we last updated plugins (though another site manager updated them so I’m not sure what all ran updates). The error goes away when I deactivate the private groups plugin. This is what I get when I try to add a new blog post:

    This page isn’t working

    geekgirlpenpals.com is currently unable to handle this request.
    HTTP ERROR 500

    WordPress version 4.7.5
    bbpress version 2.5.12
    private groups version 3.4.8

    #184178
    jvolavka
    Participant

    Hi. I’m using the bbpress private groups plugin and it seems to be causing problems with my blog. I get a 500 error when I try to add a new blog post, and it also gives an error when I try to save or publish a pre-existing draft. Is there anything I can do about that? I don’t want to lose my private forums because there are different groups on the site that need their own spaces.

    Thanks!

    #184177
    Robin W
    Moderator

    Suspect you are using php 7.1

    so 3 fixes
    1. downgrade to a lesser version of php
    2. upgrade to bbpress 2.6beta-2
    3. in bbpress 2.5.12 change line 1851 from
    $meta_query = $posts_query->get( ‘meta_query’ );
    to
    $meta_query = $posts_query->get( ‘meta_query’, array() );
    Since the next upgrade will fix that anyway, no issue in changing the bbpress file
    best I can offer I’m afraid

    #184168
    Subhransu
    Participant

    I have added wp-media button in bbpress topi form, I want to cancel while uploading any big file.

    Please help….

    #184166
    tweichart
    Participant

    Hey guys,

    I get a 500 error after the latest update:

    
    AH01071: Got error 'PHP message: PHP Fatal error:  Uncaught Error: [] operator not supported for strings in /var/www/vhosts/<url>/wp-content/plugins/bbpress/includes/forums/functions.php:1800
    Stack trace:
    #0 /var/www/vhosts/<url>/wp-includes/class-wp-hook.php(298): bbp_pre_get_posts_normalize_forum_visibility(Object(WP_Query))
    #1 /var/www/vhosts/<url>/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters('', Array)
    #2 /var/www/vhosts/<url>/wp-includes/plugin.php(515): WP_Hook->do_action(Array)
    #3 /var/www/vhosts/<url>/wp-includes/class-wp-query.php(1681): do_action_ref_array('pre_get_posts', Array)
    #4 /var/www/vhosts/<url>/wp-includes/class-wp-query.php(3238): WP_Query->get_posts()
    #5 /var/www/vhosts<url>/wp-includes/class-wp.php(617): WP_Query->query(Array)
    #6 /var/www/vhosts/<url>/wp-includes/clas...'
    

    ln 1800 looks like this:

    
    $post_stati = $posts_query->get( 'post_status' );
    
    // Default to public status
    if ( empty( $post_stati ) ) {
        $post_stati[] = bbp_get_public_status_id();
    
    // Split the status string
    } elseif ( is_string( $post_stati ) ) {
        $post_stati = explode( ',', $post_stati );
    }
    

    could be fixed by forcing the array:

    
    $post_stati = $posts_query->get( 'post_status' );
    if (!is_array($post_stati)){
        $post_stati = array($post_stati);
    }
    
    // Default to public status
    if ( empty( $post_stati ) ) {
        $post_stati[] = bbp_get_public_status_id();
    
    // Split the status string
    } elseif ( is_string( $post_stati ) ) {
        $post_stati = explode( ',', $post_stati );
    }
    

    side note: wp version 4.7.4, bbpress version 2.5.12

    Thanks in advance,
    Toby

    #184165
    Chad R. Schulz
    Participant

    When I say single forum/topic/reply slug I actually meant for the single post-type slugs of forum/topic/reply. As the /forums/ slug is just a wrapper for all those bbPress custom post-types. So you could effectively remove the /forums/ wrapper and end up with just http://wwww.somesite.com/forum/name-of-specific-forum/. If you rename the single /forum/ slug to /forums/ it would become http://wwww.somesite.com/forums/name-of-specific-forum/ or something similar with topics like http://wwww.somesite.com/topics/name-of-specific-topic/

    And adding the topic slug after the forum slug is not intuitive as the topics don’t actually exist inside the forums, they are simply linked to it–similar to a shortcut. This is something that can be done with breadcrumbs, however.

    Again, permalinks can be rather tricky. In fact I’m fairly certain they’re the reason the “Private” forums are leading not-logged in visitors to a 404 page. I’d try putting everything back to the default settings and seeing if that fixes the error. Also, look at any customizing, plugins you might have that could interfere with bbPress defaults.

    BTW, bbPress has a default error message for not-authorized users and “private” forums that should display. Again, something must be off in the settings/configuration.

    My forum has no “private” forums, so I have little experience with this particular issue. Sorry.

    Best of luck,
    Chad

    #184159
    shabirg
    Participant

    Hi,

    Sorry if this gets posted in the wrong place.

    I am looking at setting up a marketplace forum. When users signup to the forum is their a way of giving them a storefront linked to their profile.

    Shabir

    #184158
    Robin W
    Moderator

    yes there is, but basically it needs you to know what your page template is called

    see

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

    item 8 for some more details

    #184157
    thepageman
    Participant

    I am a newbie with WordPress and I have been using a custom menu widget placed at the top of all of my pages to keep a consistent header going. I am now trying to use bbPress and discovered I can create a page called “Forum” and use a page builder to place my menu widget above the forum shortcode widget to achieve the header.

    However, when I select a forum/topic, it goes to a different page, one that is generated by bbPress and as such, doesn’t have a page builder design of which I can place a header.

    It seems like the best solution would be to implement this header into all my pages through editing some php file somewhere but that is a bit beyond my technical ability. Is there a way to add widgets to ALL bbpress pages?

    #184156

    In reply to: Auto Role not working

    Robin W
    Moderator

    contributor is a wordpress role, not a bbpress one.

    so if you are using the default registration

    then

    dashboard>settings>general and what is ‘new default user’ set to ?

    dashboard>settings>forums and what is ‘auto role’ set to ?

    #184153
    mktunicus
    Participant

    Hi,

    When I click on notify me that time I am getting notification of my comments only when someone commenting on my replies it is not sending me an email that so and so person replied on my comment. Here on bbpress.org when we check on “Notify me of follow-up replies via email” then it works perfectly like this functionality I want on my site.

    Please advice me.

    #184136
    mktunicus
    Participant

    Hello Robin,

    Rules of the Road — Forum Guidelines

    Above url i got from your bbpress forum example list, on that you can see that the heading is appearing eg: “Rules of the Road — Forum Guidelines”. I have not updated the plugin on my website.

    #184134
    Chad R. Schulz
    Participant

    I understand why you might want to change the permalinks to “clean” your url. However, this helps distinguish forums from topics from replys. For example somesite.com/forums/forum/some-forum or somesite.com/forums/topic/some-topic.

    You can remove the “forums” part of the permalink in admin settings under forum and Forum Root Slug–Forum Prefix select off. And you can rename the slug for single forum/topic/reply under same menu and Single Forum Slugs. These built-in adjustments are usually harmless and can be changed as needed.

    There are also a few bbPress/WordPress permalink plugins that might help–but they could also make things worse.

    Above all, you want a clean url that both makes sense and remains functional. And I’ve found that messing around too much with permalink settings can often break more than fix.

    And regarding that “Private” issue: Does it display that when you’re not logged in? That’s a curious quirk.

    Chad

    #184126
    blasterspike
    Participant

    Hi,
    I have followed this documentation page

    Enable Visual Editor


    to enable TinyMCE. Now I would like to change the default behavior of TinyMCE to not add a paragraph for each new line but use instead <br>.
    For WordPress I have to use this

    function tinymce_remove_root_block_tag( $init ) {
        $init['forced_root_block'] = false; 
        return $init;
    }
    add_filter( 'tiny_mce_before_init', 'tinymce_remove_root_block_tag' );

    But the TinyMCE in bbPress doesn’t get this setting.
    I have tried to do something like

    function bbp_enable_visual_editor( $args = array() ) {
        $args['tinymce'] = true;
        $args['quicktags'] = false;
        $args['forced_root_block'] = false;
        return $args;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

    but it doesn’t work.
    How can I pass that “forced_root_block” to the TinyMCE enabled for bbPress?

    Thanks

    Massimo

    #184124
    laimonplus
    Participant

    Morning! how can someone correct the error message “ERROR: Topic ID is missing” when someone is trying to create a new topic with a bbpress plugin

    #184070
    rgilman
    Participant

    Thanks, Robin, that’s helpful.

    In my case I wanted to remove that title and was able to do so with

    #bbpress-forums > h3 {
        display: none;
    }

    But that feels like a workaround and it was a long hunt to find this bit of the UI in what I would think of as core code. I’ll make my suggestion in the trac.

    #184066
    Robin W
    Moderator

    and if you want to suggest code changes, then this is the place

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

    rgilman
    Participant

    This is both feedback and a request.

    I’m working on simplifying the UI of a Commmons In A Box site, which means I’m working with both BuddyPress and bbPress. While working on the group/forum page, I found that the forum title is hard coded as a simple h3 with no selectors into wp-content/plugins/bbpress/includes/extend/buddypress/groups.php at line 767. This is just before the content-single-forum template call.

    My request is that the forum title be moved from groups.php and into content-single-forum.php where it can be customized through the normal child theme process. Let me know if there is a better place than here to file this as an issue.

    Thanks!

    #184062
    vbsql7
    Participant

    When users Register, they are not given a role in the bbPress form. It remains blank and I have to assign it manually.

    I have turned on the feature to “Automatically give registered visitors the [Participant] role”

    Site: SohoSpark.com

    bbPress version: 2.5.12-6148.

    WP version: 4.7.4

    Theme: Bliss by Bluthemes 3.1.0

    Active Plugins:

    All In One SEO Pack

    bbp style pack

    Better Click To Tweet

    Captcha by BestWebSoft

    Contact Form by BestWebSoft

    Google Analytics

    Hide Admin Bar From Non-admins

    PixelYourSite

    Search & Replace

    Smart Forms

    Thrive Visual Editor

    UpdraftPlus – Backup/Restore

    WP Edit

    #184057
    pre55
    Participant

    Hi,

    Just wanted to share a newly released plugin available called bbPress User Ranks and it allows you to create user ranks, star ranks, RPG ranks, user badges and month badges which display on forums and user profiles. It also has widgets and shortcodes.

    You can view all the features and screenshots here:

    http://pre55.com/downloads/bbpress-user-ranks/

    You see the free lite version here:

    https://wordpress.org/plugins/bbp-user-ranks-lite/

    The plugin was created as I had been using the brilliant bbp user ranks plugin created by Robin W and although this worked great for what I initially wanted I eventually needed something a little more custom.

    I have therefore built my plugin from scratch incorporating lots of great features I think will increase engagement for any bbPress forum.

    Let me know what you guys think, if you have any suggestions please let me know.

    #184052

    In reply to: TTFB problem

    newz12
    Participant

    @robin-w I’m just seeking help to get a better TTFB… there must be a way around and the developers of BBpress should know better than someone else I can hire.

    #184050
    forums1234
    Participant

    Thank you! bbp style pack is a wonderful app. I’d previously downloaded it and styled my forum with it. It performed beautifully.

    What I’m looking to accomplish is one navigation option only, “Previous Page,” or “Back.” I know that flies in the face of what is bbPress, but it’s vital to my interests. Is that even possible?

    Thank you in advance.

    #184049

    Topic: Seo for bbPress

    in forum Plugins
    Luizik
    Participant

    Hello, dear!
    Can you help me with seo question? If anyone creat any topic, how can i do the seo title to be created automatically from the title of the topic and seo description from the content of the topic?

    Thank you for any answere..

Viewing 25 results - 9,001 through 9,025 (of 64,535 total)
Skip to toolbar