Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 11,776 through 11,800 (of 64,496 total)
  • Author
    Search Results
  • #173811
    gurokevin
    Participant

    Ok, so I installed bbPress onto my wordpress platform and then of course activated it. But from there, there is no section to configure it or anything. I read that there was a “forum” area. But I can’t find it anywhere. I have looked under every section and can’t find anything. Please help.

    #173810
    cybergys
    Participant

    Any theme would do. Just check if they are woocommerce and bbpress compatible or not!

    #173805
    Pascal Casier
    Moderator

    For uploading files, the 3 products I know of are ‘GD bbpress Attachments’, ‘Image Upload for BBPress’ and ‘bbPress Multi Image Uploader’. Have a look if it would fit your needs.

    If you use BuddyPress as well, then there is also ‘BuddyPress Forum Editor’.

    Pascal.

    #173802

    In reply to: Non-displayed Topics

    Pascal Casier
    Moderator

    That looks like a plugin or theme issue (I suspect plugin).
    Please deactivate all other plugins except bbPress and try again. If it works, restart the plugins one after the other to find the one blocking:
    Pascal.

    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    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 twentyfifteen, and see if this fixes.

    #173790
    Robin W
    Moderator

    bbpress and buddypress work fine together.

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and buddypress 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 twentyfifteen, and see if this fixes.

    berkelmudez
    Participant

    Hi,

    I have wordpress 4.4.4 with bbpress 2.5.8 installed with Buddypress 2.5.2 Everything works fine except on my profile page.

    If I go to a user profile and go to the tab forums and subtab topics started, it just shows every single topic that has been made and not just the topic that has been started by that user.
    Same goes with ‘replies created’, I get to see every single reply beside the user’s replies.
    As with favorites and subscribed, All topics besides the favorites will also all still display.
    I basically needs all those tabs to display that user’s created topics and replies exactly like here on bbpress.org.

    Is there a some settings I need to set? Could buddypress settings have been causing it? Is there some test I can run to see what is it?

    #173786
    webmedia365
    Participant

    I have installed bbpress version 2.5.8 it worked fine but when i install buddypress and activate it my site goes dead. Even i can’t access my WordPress dashboard admin login. Then i have to go to my site cpanel and manually delete one of the plugins. After deleting the one plugin site works fine. But I can not use these two plugins at the same time i have to deactivate one to use other. Please help me what to do. I am using WordPress version 4.4.1. My site is http://www.virtualmentoring.net
    Please help me out

    #173773
    twelvell
    Participant

    We have experienced problems to localize some of the bbpress strings with WPML.

    The following words on bbpress cannot be translated:
    1 topic
    1 reply
    Topic
    Normal
    Sticky
    Super sticky
    Open
    Closed
    Spam
    Trash
    Pending

    There might be some more parts, however, these are the ones I have discovered as unable to localize. I have browsed the Google and found some links to this forum where there were some discussions about experimemtal WPML plugin for bbpress but that’s it.

    Can someone please advice me what can I do to translate these parts? We are really stuck on this issue and it keeps us from publishing our website. Is it possible to localize the forum and rewrite these parts manually? Some .mo or .po edit way?

    It is sad that a plugin popular like this is not working with WPML.

    tech55541
    Participant

    Hello,
    Actually after further testing, my code above for some reason hid the Forums, Topics, and Replies menu from people who had access to view them. Here is an updated piece of code that does not have this problem.

    /*Customize the BBPress roles to allow Participants to trash topics
    add_filter( 'bbp_get_caps_for_role', 'ST_add_role_caps_filter', 10, 2 );
    
    function ST_add_role_caps_filter( $caps, $role ){
        // Only filter for roles we are interested in!
        if( $role == 'bbp_participant' ) {
    
    	$new_caps = array(
                    // Primary caps
                    'spectate'              => true,
                    'participate'           => true,
                    'moderate'              => false,
                    'throttle'              => false,
                    'view_trash'            => false,
    
                    // Forum caps
                    'publish_forums'        => false,
                    'edit_forums'           => false,
                    'edit_others_forums'    => false,
                    'delete_forums'         => false,
                    'delete_others_forums'  => false,
                    'read_private_forums'   => false,
                    'read_hidden_forums'    => false,
    
                    // Topic caps
                    'publish_topics'        => true,
                    'edit_topics'           => true,
                    'edit_others_topics'    => false,
                    'delete_topics'         => true,
                    'delete_others_topics'  => false,
                    'read_private_topics'   => false,
    
                    // Reply caps
                    'publish_replies'       => true,
                    'edit_replies'          => true,
                    'edit_others_replies'   => false,
                    'delete_replies'        => true,
                    'delete_others_replies' => false,
                    'read_private_replies'  => false,
    
                    // Topic tag caps
                    'manage_topic_tags'     => false,
                    'edit_topic_tags'       => false,
                    'delete_topic_tags'     => false,
                    'assign_topic_tags'     => true,
                );	
    
    	}
    
        return $new_caps;
    }
    /*Fixes an issue that only allows mods to trash topics.
    bbpress.trac.wordpress.org/changeset/5852
    bbpress.trac.wordpress.org/ticket/2685*/
    
    add_filter( 'bbp_map_reply_meta_caps', 'ST_tweak_trash_meta_caps', 11, 4 );
    add_filter( 'bbp_map_topic_meta_caps', 'ST_tweak_trash_meta_caps', 11, 4 );
    
    // tweak for replies
    function ST_tweak_trash_meta_caps( $caps, $cap, $user_id, $args ){
    
    	// apply only to delete_reply and delete_topic
    	if ( $cap == "delete_reply" || $cap == "delete_topic" ){
    		// Get the post
    		$_post = get_post( $args[0] );
    		if ( !empty( $_post ) ) {
    
    			// Get caps for post type object
    			$post_type = get_post_type_object( $_post->post_type );
    			$caps      = array();
    
    			// Add 'do_not_allow' cap if user is spam or deleted
    			if ( bbp_is_user_inactive( $user_id ) ) {
    				$caps[] = 'do_not_allow';
    
    			// Moderators can always edit forum content
    			} elseif ( user_can( $user_id, 'moderate' ) ) {
    				$caps[] = 'moderate';
    
    			// User is author so allow edit if not in admin
                } elseif ( ! is_admin() && ( (int) $user_id === (int) $_post->post_author ) ) {
                    $caps[] = $post_type->cap->delete_posts;
    
    			// Unknown so map to delete_others_posts
    			} else {
    				$caps[] = $post_type->cap->delete_others_posts;
    			}
    		}
    
    	}
    	// return the capabilities
    	return $caps;
    }

    NOTE: Had to remove links.

    Thanks.

    #173771
    sgblogadmin
    Participant

    We have a closed forum at http://www.secretgarden.eu.com using bbPress 2.5.8 , bbPress Notify 0.2.2 , bbP Private Groups 3.1.9 …. a certain person has left the group, they are unchecked as a user for the private group and are no longer visible as a member of the Plan that gives access to the forum. They cannot access the forum so that fits with this. However they are still getting emails on new Topics that are posted. This is embarrassing for them and others. Is there some separate file with email addresses used to send people new topics that has in some way not been updated?

    Any help much appreciated

    #173768

    In reply to: Bulk Users Deletion

    swstarone
    Participant

    Dear sir this tool is made for wordpress posts,
    a user who have posts in bbpress forum all shows as 0 post users.

    can you help me to make a sql query for to change roles of bulk users.

    #173762
    redblacked
    Participant

    1. how to seo setting in per post in bbpress’s forum?

    2. how to insert adsense code in per post in bbpress’s forum?

    #173758
    ldieno
    Participant

    BBPress 2.5.8
    Wordpress 4.4.2

    I am currently having difficult with something that I think might be simple to configure.

    I have a very simple site that is not using any third party or complex permissions settings. I have registered users who are “Contributors” and I am attempting to configure a forum that only members can see.

    I have created a new forum.
    Settings are as follows:
    Type: Forum
    Status: Open
    Visibility: Private

    When you click on the permalink to that forum my site throws back a 404.

    When I change the visibility to public the forum works.

    Hoping there is some minor configuration I am missing to getting this going and creating a forum that only registered members of the site can view and contribute to?

    thank you in advance!

    cassel
    Participant

    I am trying to start a thread in my own forum, on my own site. I have the Keymaster role, and i have started a similar thread several times without any issue. Today, i can’t get to post. I am logged in. I tried in Chrome and Firefox and it still does not let me.

    Was there anything that changed in the last update?
    Thanks.

    I am using WP 4.4.2 aand bbpress 2.5.8

    Home of the Scrapbook Campus

    #173754
    jtsimmons
    Participant

    Hello, first I’d just like to say that I’ve thoroughly searched this issue, on Google and here on the forum, and have found no conclusive answers to this.

    Right now I’m noticing tons of p and br tags in bbPress HTML, and I’m confused as to whether this is stemming from wpautop or is actually part of bbPress template files itself.. to test I’ve literally deactivated wpautop itself (and checked site-wide on other pages to verify it was indeed off) and the tags still remain on bbPress pages.

    This is making it extremely hard to custom style bbPress while navigating these tags, as they break the layout in needless ways.

    Here’s some examples..

    p and br tags

    Thanks for reading,

    joshualong
    Participant

    We are hosting with WP Engine and used their staging function to create a few new pages, add some plugins, build a pricing table in one of the plugins, and upload a pile of pics to the media library.

    Problem is that only the plugins made it over when we migrated without updating tables. So, we aren’t sure which tables to include in the staging migration to the live server without overwriting the forum activity we’ve had in the past week since making the staging environment.

    WP Engine isn’t sure either, as they only found a note that BB Press forum topics, replies, etc, are stored in the wp_posts table.

    Here are all the tables available for us to migrate over, so any help sorting out which ones would pull over our updates, without overwriting the forum (if that’s at all possible) would be great!

    wp_commentmeta
    wp_comments
    wp_links
    wp_options
    wp_postmeta
    wp_posts
    wp_pts_modules
    wp_pts_modules_type
    wp_pts_tables
    wp_pts_usage_stat
    wp_taxonomymeta
    wp_term_relationships
    wp_term_taxonomy
    wp_termmeta
    wp_terms
    wp_usermeta
    wp_users

    #173748
    Pascal Casier
    Moderator

    Hi,
    That seems to be a buddypress function, not a bbPress one. If you have buddypress installed, then I think the buddypress forum might be able to help you.
    Pascal.

    #173747
    johnmontfx
    Participant

    [Resolved]
    Oops…sorry…I just noticed the pluggable function is in BuddyPress and not bbPress.

    Still surprised I can’t access it, but not a bbpress problem 🙂

    #173746
    Pascal Casier
    Moderator
    #173745
    johnmontfx
    Participant

    I’m wanting to use the pluggable function bb_is_user_logged_in() in a bbpress template file in my custom theme, but I’m getting the dreaded “Call to undefined function bb_is_user_logged_in()” message.

    From my understanding, I could copy the pluggable function to my theme, but shouldn’t I be able to use this as part of the forums loop since bbPress is loaded?

    Am I misunderstanding something here?

    Thanks!

    #173733
    johnmontfx
    Participant

    Following up with research complete….New Relic is really awesome for this type of stuff.

    It does come down for the most part to the quantity of the forums/sub-forums. Most of the time spent was in the template calls for each sub-forum. However, it also appears a bit of the additional time is due to the Groups plugin which makes the SQL query a bit more complex.

    So I’ve decided to set my home page to be a view of recent topics (which, frankly, is a bit better anyway because it shows more activity of interest) and the performance is going to be much better for members.

    However, one hitch here is that I’d like to have a “forum home-like” page available for view for those that want it. With an additional requirement that it is under the /forums/ URL ‘subdirectory’ (due to various robot rules, etc). In other words, something like /forums/all or /forums/views/all . I can’t use the bbpress shortcode for a page because I can’t put the page under the /forums/ subdirectory. I looked into using views, but that doesn’t seem to work either.

    I’m probably missing something obvious (and I’ve done considerable googling), but it’s not seeming to be as easy as it sounds. Probably should start another thread…

    Thanks again for the insights…

    #173732
    cskitchens
    Participant

    I mean that I drug the bbpress search widget to a widget side bar area.

    #173730
    cskitchens
    Participant

    I have installed the bbpress forum search and it does not work.

    It does not work with several themes. The site is using Headway but does not work with a bundled theme either.

    http://www.systemsgoforum.org

    WP 4.4.2
    BBP 2.5.8

    #173729
    aaachiaki
    Participant

    Trying to make sense of what Stephen provided… Is this something I need to update in bbpress/includes/admin/converter/phpBB.php
    ???

Viewing 25 results - 11,776 through 11,800 (of 64,496 total)
Skip to toolbar