Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 10,076 through 10,100 (of 64,454 total)
  • Author
    Search Results
  • #179100
    JoeCec
    Participant

    I wanted to introduce myself to the forum. I just registered and I have been using bbpress for about a week now! I am running WordPress 4.6.1 and bbpress 2.5.11…. I created a website and forum page @ http://www.theintrovertspeaksblog.com I would like some honest input as to the integration of bbpress into the website. I also have a question, On the lost password page it displays a blank screen with simple text box only as well as the reset password button. I temp fixed it by adding text above the box to direct the user to insert username or password. Is there a better way to do this?

    #179095
    teamking12
    Participant

    Very sad to learn from yours too. Do you know of any other forum plug in that is similar to bbpress? Now I am stuck and lost.

    #179092

    In reply to: bbp-messages

    u_Oi
    Participant

    bbPress Messages works fine… maybe there is something wrong with WAMP.

    Try to buy the pro version to get faster support and better features! bbPress Messages Pro

    Regards,

    #179085
    Susan
    Participant

    I would like an update to this. I’m experiencing the same problem with bbpress and akismet. Are you no longer filtering forum topics through Akismet?

    #179084
    Daethian
    Participant

    I’ve only ran plug in updates. I have a lot and I run Buddypress. I know I can go one by one and deactivate them and try to narrow it down but until last night I had no means to do so. If I re-install the bbpress plugin will I lose my content in the forums?

    #179083
    rfk55tn
    Participant

    I have the exact same issue. Using WP 4.6.1 with twenty sixteen theme + bbpress and no other plug-ins on a local install for testing.

    I can create forums and topics. However, I cannot post any comments and keep getting the following error message: ERROR: Are you sure you wanted to do that?

    Have tried repeated uninstall/install of both WP and BBP. Same result.

    #179081

    Topic: bbp-messages

    in forum Troubleshooting
    russ8523
    Participant

    Have produced new WP site on Wamp 2.5 on my PC. I have installed bbp-messages 0.2.3.1 and already have bbpress 2.5.8 forum. WordPress 4.6.1 Sport Theme by Theme Canon Win10

    THE WHOLE SITE and forum IS WORKING FINE, but When I try to use bbp-messages Lite, it returns the following:

    FORBIDDEN: you don’t have permission to access wordpress/members1/http:/localhost/wordpress/members1/ on this server. Apache/2.4.9 (Win64) PHP/5.5.12 Server at localhost Port 80.

    Would be very grateful for any advice as I am ready to publish this web – this my first WP site!

    #179078
    gbbgadmin
    Participant

    If it were our host, it should happen to more than just one page out of hundreds of thousands of pages. We are only getting a 502 error on this page:

    https://bitbillions.com/wp-admin/edit.php?post_type=reply

    All other functions of BBPress work perfectly and all other pages of our site work perfectly. It is like something is breaking the php when that page is trying to load.

    #179077
    teamking12
    Participant

    Hello everyone

    I am in need for help. I have downloaded bbpress plugin version 2.5.11 and bbpress WPTweak version 1.3.1 to create a forum my webpage. Everything went smoothly until I decided to reply to the post I created in my forum. I tried to submit the reply, but an error pops up ” ARE YOU SURE YOU WANTED TO DO THAT”. I really don’t know how to solve the problem.

    #179073
    u_Oi
    Participant

    Hi Buddies!

    I checked out the “Layout and functionality” page, and I found that I can add Social Media Fields to bbPress through this function:

    function add_extra_contactmethod( $contactmethods ) {
    // Add new ones
    $contactmethods['twitter'] = 'Twitter';
    $contactmethods['facebook'] = 'Facebook';
    $contactmethods['googleplus'] = 'Google Plus';
    $contactmethods['youtube'] = 'Youtube';
      
    // remove unwanted
    unset($contactmethods['aim']);
    unset($contactmethods['jabber']);
    unset($contactmethods['yim']);
      
    return $contactmethods;
    }
    add_filter('user_contactmethods', 'add_extra_contactmethod');

    I wonder if there is a way to make them visible. I mean if I add my Facebook account could bbPress show it on the public profile with a Facebook Icon?

    And also show them in users topics and replies posted?

    Any advice, thanks!

    Ismail
    Participant

    @treeflips

    Hi contemplate,

    Can you make a skimmed down version of your solution for people who have ONLY bbpress?

    /**
     * Hooked into the new reply function, this notification action is responsible
     * for notifying topic and hierarchical reply authors of topic replies.
     * Fixed: https://bbpress.org/forums/topic/new-reply-notification-link-to-the-reply/
     */
    function bbp_buddypress_add_notification_custom( $reply_id = 0, $topic_id = 0, $forum_id = 0, $anonymous_data = false, $author_id = 0, $is_edit = false, $reply_to = 0 ) {
    
    	// Bail if somehow this is hooked to an edit action
    	if ( !empty( $is_edit ) ) {
    		return;
    	}
    
    	// Get autohr information
    	$topic_author_id   = bbp_get_topic_author_id( $topic_id );
    	$secondary_item_id = $author_id;
    
    	// Hierarchical replies
    	if ( !empty( $reply_to ) ) {
    		$reply_to_item_id = bbp_get_topic_author_id( $reply_to );
    	}
    
    	// Get some reply information
    	$args = array(
    		'user_id'          => $topic_author_id,
    		'item_id'          => $reply_id,
    		'component_name'   => bbp_get_component_name(),
    		'component_action' => 'bbp_new_reply',
    		'date_notified'    => get_post( $reply_id )->post_date,
    	);
    
     	// Notify the topic author if not the current reply author
     	if ( $author_id !== $topic_author_id ) {
    		$args['secondary_item_id'] = $secondary_item_id ;
    
    		bp_notifications_add_notification( $args );
     	}
     
     	// Notify the immediate reply author if not the current reply author
     	if ( !empty( $reply_to ) && ( $author_id !== $reply_to_item_id ) ) {
    		$args['secondary_item_id'] = $reply_to_item_id ;
    
    		bp_notifications_add_notification( $args );
     	}
    }
    remove_action( 'bbp_new_reply', 'bbp_buddypress_add_notification', 10 );
    add_action( 'bbp_new_reply', 'bbp_buddypress_add_notification_custom', 10, 7 );
    #179057

    In reply to: Upload Image

    jaakko87
    Participant

    This plugin is even better for image uploads, imho 🙂

    https://wordpress.org/plugins/image-upload-for-bbpress/

    #179054
    Stephen Edgar
    Keymaster

    At the top, and at the bottom of the users page is the ability to change a users role, there is a bug that is fixed for bbPress 2.6 but in 2.5.x if you use the top dropdown to change users roles it won’t work, it should work using the bottom dropdown 🙂

    #179053
    Stephen Edgar
    Keymaster

    You’d need to write or have written on your behalf a custom plugin for this functionality, bbPress doesn’t support this “out of the box”

    #179046
    johnskennedy
    Participant

    Hi,
    Since my last login I am unable to change the forum user role of any of my members from the user’s tab in the dashboard. I select the user and the role and press change and nothing happens.

    #179039
    Robin W
    Moderator
    #179036

    In reply to: Upload Image

    Robin W
    Moderator

    no idea why it is not in core, but this I think adds that functionality

    https://wordpress.org/plugins/gd-bbpress-attachments/

    #179035
    gbbgadmin
    Participant

    Maybe to help out a bit:

    We run
    PHP7.0-fpm (latest stable)
    Nginx 1.10 (latest stable)
    Ubuntu 16.04 (latest stable)
    WordPress 4.6.1
    bbPress 2.5.11
    bbPress Advanced Statistics 1.4.02
    bbPress NewTopics 1.0.1
    bbPress No CAPTCHA reCAPTCHA 1.0
    BuddyPress Version 2.7.2
    BuddyPress Activity Plus 1.6.4
    Buddypress Messages Spam Blocker 2.5
    BuddyPress Profile Tabs 1.6.1

    #179033
    Stephen Edgar
    Keymaster

    Visit the subscriptions section of your profile:

    e.g: https://bbpress.org/forums/profile/henryada/subscriptions

    #179032
    imthinking
    Participant

    Thank you Robin for your response. It’s much appreciated. I actually had already tried that route exactly as you have described plus I probably didn’t make my question clear on the private part.

    Here is the link to my test page of forums – http://imaginationfoundry.com/forumhome/

    I made “Pasteboard Heaven” a category and then packet of fun with PH its parent. Even though I chose Alternate on BPQ my site is creating an indent instead of bringing it down one notch on its on line.

    Regarding the private portion I meant I didn’t want the private groups to display on my main forum index page.

    Any thoughts on why my bbpress is creating an indent?

    Any thoughts on how to hide th private groups from displaying on my forum page?

    Thank you Robin or any others.

    #179030
    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.

    Then come back

    #179028
    Robin W
    Moderator
    #179025
    Robin W
    Moderator
    #179002
    bobtheturtle
    Participant

    Hi,

    How do I get the topics and reply on my bbpress forum? I got the main “forums” page to display full width using the “full width template” but everything else is still got the sidebar.

    Please help!

    here is my website forums http://www.iappadapt.com/community/

    #179001
    imthinking
    Participant

    I’m a solid 7.5 out of 10 on WP but 100% new to BBpress.

    I plan on having about 15 categories with some 50 forums for each category on my site. The current default display isn’t easy to follow so I’m attempting to find a way to easily change the layout on the forum index display page.

    However, I don’t want to show all of the forums as some are private to groups etc.

    I’m looking to achieve this look on this page: http://theme-sphere.com/smart-mag/forums/

    I understand CSS is involved here but I’m looking for a get me going fix.

    How can I list multiple forum titles on one page. When I use the code [bbp-single-forum id=2733] and then use it again to show a different forum it will only show the first one.

    Is this not possible with shortcode?

    Could I create a graphic bar and separate groups of forum titles like in the page I linked to?

    Thank you for whoever guides in the path of rest as I have exhausted these forums in an attempt to answer these questions.

    🙂

Viewing 25 results - 10,076 through 10,100 (of 64,454 total)
Skip to toolbar