Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 1,426 through 1,450 (of 7,500 total)
  • Author
    Search Results
  • #244830
    Henry Wright
    Moderator

    Hi @veelow

    Try asking this question over at bbPress.

    #244782
    danbp
    Participant

    Hi @skvirly,

    unfortunately, i think nothing about your issue, except that it seems that something is interfering somewhere.

    The best practice in such case is to start from the begin.
    Activate WordPress and 2015 theme. Check that anything is correctly working.
    Then activate BuddyPress. Re-check.
    Then bbPress. Re-check.
    Then, activate Sweet Date theme. Re-check.

    If all is Ok, and only if all, you now have a base install of WP/BP/bbP and your theme working correctly. There shouldn’t be any notice or warning at this stage. If you got one, it’s a probleme with the theme.

    If this is ok, you add one plugin. And re-check. This normally make things easier to debug.
    As it is apparently related to xprofile, it could be possible that if you use contactform plugin for your register page, that something is wrong with that plugin. But this is only a hypothesis, not a certainty.

    Note that php memory_limit of 128 mo is enought to run a script, when BP is running on a single install. Aside, note also it’s default for php 5.6 version.

    Happy debuging.

    Binayk
    Participant

    Actually I asked quite unusual question my apologizes, it can be easily triggered by add_action('publish_{custom_post_type_name}', 'function_to_perform');
    Can anyone help me out with this, I want to get user_id when a user submits a forum topic so that I can award points, as currently I am using bbpress moderation so when user submits a topic until its published by admin they won’t get any points. I want to make custom function to award user points for submitting topic even if its under moderation.

    #244499
    niyaza
    Participant

    I also faced the same error, showing HTTP error while upload avatar on buddypress profile.
    On my site also have bbpress and BuddyPress plugins.
    In my site don’t have BBPress plugin ‘Forum Restrict’.
    Can you advice how I would resolve this issue.

    #244469
    shanebp
    Moderator

    bbPress has it’s own support forums.

    As you probably know, PHP notices are not that critical.
    You might try looking at the file in the notice.
    I suggest you review the function and perhaps add a conditional to check if topic is empty before adding to $new_title
    You may have found a bug. You can create a ticket here.

    #244124
    danbp
    Participant

    the pages go directly to groups/name_group/forum, so i have a not found error

    Let’s think that you set up forum wrong. Verify your bbPress settings. Or that you added some bbPress shortcodes to the BP group page.

    Installing Group and Sitewide Forums

    On a correct install of BP/bbP, if a group has a forum, it is because the group creator activated it.

    As site admin, go to the group management on front-end and deactivate the forum.

    or/and

    If you don’t want forum for groups, simply deactivate this option in bbPress settings.
    Deactivate also Allow users to create forums in BuddyPress settings.

    #244099
    danbp
    Participant

    bbPress is a separate plugin and is managed like any other plugin from within WP dashboard.

    Creating Content

    Admin access to forum content (on a single install) is by default,
    your-site-url/wp-admin/edit.php?post_type=topic

    #244098
    shanebp
    Moderator

    BuddyPress and bbPress are different plugins.
    bbPress has it own spport forums.
    In wp-admin, under Settings, you should links for: BuddyPress, Forums
    In wp-admin, in the main nav column, you should see links for: Forums, Topics, Replies
    There is no path ‘…/bb-admin’

    #243995
    VeeLow
    Participant

    Sadly, I’m not here with an answer, but another manifestation of this same problem.

    Am running WordPress with bbpress and BuddyPress, Twentyfourteen theme, everything updated except I’ve not yet gone to BuddyPress 2.3.3.

    My login is “Prof L”; so is my user name. To the best of my knowledge I’ve set “admin” nowhere in BuddyPress……but to private message me, “@admin” is required!

    Update: OK, I see that in email settings, one of the options reads as follows:

    A member mentions you in an update using “@admin”

    So somehow that has been set to my “handle” (is that the right BP term?) But again, I never to my knowledge entered “admin”, nor does it display anywhere on the front end of the site.

    I will try the plugin mentioned up thread, and report back–but wanted to testify that this problem is real and ongoing….

    #243985
    shanebp
    Moderator

    afaik, there is no option.
    Try this in your theme/functions.php

    function larnoult_remove_bbpress_notifications() {
        remove_action( 'bbp_new_reply', 'bbp_buddypress_add_notification', 10, 7 );
    }
    add_action( 'bbp_loaded', 'larnoult_remove_bbpress_notifications', 99  );

    You may need to tweak the priority settings.
    https://codex.wordpress.org/Function_Reference/remove_action

    #243845

    In reply to: filter activity loop

    danbp
    Participant

    Your question is a bit unclear: only display updates from new topics and replies

    BP jargon:
    Updates are messages you add on site wide activity, group or profile activity (what’s new form)

    New topics are (normaly) related to bbPress forum topics.
    And replies can came from, in fact, everywhere. Blog post comments & replies
    Ativity comments & replies
    Forum comments & replies…

    Give details please or use one of those methods: template modification or custom function.

    Templating

    Activity Loop

    Function

    Using bp_parse_args() to filter BuddyPress template loops

    #243821
    danbp
    Participant

    @jeremymh,

    Plugin author stopped support on wp.org repo since a few weeks.
    sLaNGjIs Team do not provide support on wordpress.org forum and reviews system!

    If you get an issue, you have to ask here now https://github.com/sLaNGjI
    This is also the reason why nobody answered to your question on support….

    FYI, i found this in the plugin review ! You’ve nothing to loose to try that.

    In plugin’s ReadMe, it’s stated that:
    * Work on all WordPress version from 3.1+ to 4.2+
    * Compatible with bbPress and BuddyPress (for front-end hide).

    BuddyPress settings has an option to show/hide the Toolbar to users, which is working properly since a while. I’m not aware of any toolbar trouble who should be resolved in BP’s core in regard of a third party plugin.

    Conclusion: don’t use a plugin who has no decent support. Do it yourself or search another plugin. Sorry !

    #243755
    danbp
    Participant

    @ericks89,

    There is a way, if you use BBPress Signature. 😉 Modifying bbp_get_reply_content filter.

    Here an example fetching 3 xprofile fields called Signature, Industry and Type. Change it to your need. Code goes into bp-custom.php or child theme functions.php

    
    function my_bbp_reply_content_append_user_signature( $content = '', $reply_id = 0, $args = array() ) {
    	// Default arguments
    	$defaults = array(
    		'separator' => '<hr />',
    		'before'    => '<div class="bbp-reply-signature">',
    		'after'     => '</div>'
    	);
    	$r = wp_parse_args( $args, $defaults );
    	extract( $r );
    
    	// Verify topic id, get author id and potential signature
    	$reply_id  = bbp_get_reply_id       ( $reply_id );
    	$user_id   = bbp_get_reply_author_id( $reply_id );
    	
    	// Get fields data. Caution: name is case sensitive.
    	if(function_exists('bbpress') ) {
    		$signature = xprofile_get_field_data( 'Signature', $user_id );	
    		$wowi = '<br>'. xprofile_get_field_data( 'Service', $user_id );
    		$wowt = '<br>'. xprofile_get_field_data( 'Type', $user_id );
    	}
    	else {
    		$signature = bbp_get_user_signature ( $user_id  );
    	}
    
    	// If signature exists, adjust the content accordingly
    	if ( !empty( $signature ) )
    		$content = $content . $separator . $before . $signature . $wowi . $wowt . $after;
    
    	return apply_filters( 'my_bbp_reply_content_append_signature', $content, $reply_id, $separator );
    }
    
    if ( !is_admin() ) {
       // remove the original BBPress filter
       remove_filter( 'bbp_get_reply_content', 'bbp_reply_content_append_user_signature', 1, 2 );
       // add our custom filter
       add_filter( 'bbp_get_reply_content', 'my_bbp_reply_content_append_user_signature', 1, 2 );	
    }
    

    May this help. 😉

    #243698
    shanebp
    Moderator

    This is the BP support site.
    The bbPress support site is here.

    Have you tried https://wordpress.org/plugins/gd-bbpress-attachments/ ?

    shadow_boi
    Participant

    bbpress sitewide forum.

    oh right, forget to mention it, when i mention a member in a forum topic, i do not get mention suggestions when typing a letter or two.

    same thing here when i are typing in the buddypress.org reply editor, when i do @danbp, i dont get @ suggestions.


    @danbp
    , i have mentioned you in this reply, do you get notification saying i mentioned you?

    #243641
    danbp
    Participant

    Hallo @ubbegubben,

    if you use bbPress, you’ve better chance for answers on their support forum.

    danbp
    Participant

    Any ideas what I’m doing wrong? Using over 4 years old tricks ? 😉

    Give this a try (in bp-custom)

    function bpfr_guest_redirect() {
    global $bp;
    // enter the slug or component conditional here
       if ( bp_is_activity_component() || bp_is_groups_component() || bp_is_blogs_component() || bp_is_page( BP_MEMBERS_SLUG ) || is_bbpress() ) {
    	
    // not logged in user - user will be redirect to any link you want
       if( !is_user_logged_in() ) { 
    	//wp_redirect( get_option('siteurl') ); //back to homepage
    	//wp_redirect( get_option('siteurl') . '/register' ); // back to register page	
    	wp_redirect( get_option('siteurl') . '/your_page_title' ); // back to whatever page
    	} 
       }
    }
    add_filter('get_header','bpfr_guest_redirect',1);

    And to close the second entry door, which many users seems to ignore…

    function bpfr_hide_rss_feed_to_nonreg_visitor() {
    
     if ( !is_user_logged_in() ) { 	
    		
       remove_action( 'bp_actions', 'bp_activity_action_sitewide_feed' );
       remove_action( 'bp_actions', 'bp_activity_action_personal_feed' );
       remove_action( 'bp_actions', 'bp_activity_action_friends_feed' );
       remove_action( 'bp_actions', 'bp_activity_action_my_groups_feed' );
       remove_action( 'bp_actions', 'bp_activity_action_mentions_feed' );
       remove_action( 'bp_actions', 'bp_activity_action_favorites_feed' );
       remove_action( 'groups_action_group_feed', 'groups_action_group_feed' ); 
        }
    }
    add_action('init', 'bpfr_hide_rss_feed_to_nonreg_visitor'); 
    #243617
    shadow_boi
    Participant

    okay, i tried the following:

    tag user in BuddyPress Activity, user could receive notification
    tag user in bbpress forum post/comment, user could not receive notification

    it seems like tagging user in forum does trigger notification, can anyone here confirm if this is expected behaviour?

    if i want to trigger notification when user is tagged in forum post/comment, what should i do? thanks

    #243611
    shadow_boi
    Participant

    thanks for you reply.
    i thought that is buddypress feature so i asked here.
    i have also posted the same thing in bbpress now. hopefull will get an response.

    #243610
    shanebp
    Moderator

    Have you tried asking on the bbPress support forums ?

    shanebp
    Moderator

    Custom notifications in non-components is tough.

    Have you try hooking bp_notifications_get_notifications_for_user with a higher priority than what bbPress uses? Something like 8 instead of 10?

    You may want to submit a ticket to bbPress about the orphaned return in their function.

    #243512
    AdventureRidingNZ
    Participant

    I’ve found it.

    The BBPress plugin ‘Forum Restrict’ conflicts with BuddyPress Profile pic uploads. If you install ‘Forum Restrict’ it will break BuddyPress profile picture uploads.

    Eddie

    #243494
    shanebp
    Moderator

    afaik, this is a bbPress issue.
    Have you tried asking on the bbPress support forums?

    #243416

    In reply to: Is it possible?

    Henry Wright
    Moderator

    1. Which forum are you using? If you migrated your forum content to bbPress, you’d have one login shared across both your forum and your (WordPress) website. Is that an option you’d consider?

    danbp
    Participant

    BuddyPress use bbPress when you allow group forums.
    If the group is private, the attached forum is also hidden ton non members of that group. Same for public or private groups.

    You don’t have to change the group forum setting in the forum list.
    The right steps
    Create a group A
    A is set to private
    Allow a forum for A
    —— The wrong step ——–
    Going to dashboard forum admin, and set forum A to private. If you do this nobody will see it except site admin.

    Groups


    https://buddypress.org/support/topic/hide-buddypress-and-bbpress-items-from-guests/
    https://buddypress.org/support/topic/buddypress-private-group-is-not-visible-in-bbpress/

Viewing 25 results - 1,426 through 1,450 (of 7,500 total)
Skip to toolbar