Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 10,101 through 10,125 (of 64,474 total)
  • Author
    Search Results
  • #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.

    🙂

    #179000
    miller007
    Participant

    I also have this problem and am running the current versions of WordPress and bbPress. Is there a fix for this yet? Thank you!

    #178999
    gobi004
    Participant

    i’ve moved the topics and replies from one to another site. topics are showing but replies are not showing i’ve done repair things also. it shows only current replies which is from new site. but doesn’t show the imported replies.
    link: http://developer.agile-labs.com/forums/

    #178995

    In reply to: Private Forums issue

    wafadul
    Participant

    3 days and no reply from bbpress support for a very basic question?

    is payment now necessary to be able to get help around here? just asking.

    #178993
    jbrownwebdev
    Participant

    I’m currently working on a project for a client who wants to have the latest reply from any topic in a forum show up on the main bbpress page under the forum name. Is there a way to get this reply from the database using either built in functions or a wp_query. I also need to show the persons avatar, name, and when it was posted. Any help would be greatly appreciated. Dev site is at http://realestateinvesting.how/topics/. I can’t tell you exactly what version of bbpress they are using as the client hired a developer before me who hid the plugins unless your at a user level higher than admin. WordPress version is 4.5

    #178992
    atmojones
    Participant

    @Robkk any thoughts?

    So I made a clean install of WordPress and bbPress (and then after a few test posts I installed buddypress which didn’t change anything) and made 2 users. When I @mention a user in the forum it links correctly regardless of how many spaces I enter. HOWEVER, it does always strip the leading spaces down to 1 in the presentation of the post. If I click Edit on the post the original number of spaces can be seen. Is this intended behavior?

    I’m going to make the changes to functions.php to enable the visual editor and to enable buddypress @mention suggestions in bbPress visual editor (like my production site) and see if the error reproduces.

Viewing 25 results - 10,101 through 10,125 (of 64,474 total)
Skip to toolbar