Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum'

Viewing 25 results - 1,626 through 1,650 (of 20,260 total)
  • Author
    Search Results
  • sharmavishal
    Participant

    Home is a component..bp_is_single_item()so lets say u go to forums of that group it would be Group Title–Forums…why would u need to change that? this is the correct behaviour

    #255217
    danbp
    Participant

    I finally asked Boone for help.

    bbp_buddypress_loaded fires before everything is, in fact, fully loaded. bbPress’s component-specific extensions aren’t loaded until bp_init:7 (ty @boonebgorges for this explanation).

    Changing add_action to bp_init with a priority of 8 did the job !

    This may work for Site Activities, Members and Group activities

    function bpfr_remove_activity_dropdown_label() {
       // Remove forum filters in site wide activity streams
       remove_action( 'bp_activity_filter_options',        array( bbpress()->extend->buddypress->activity , 'activity_filter_options'   ), 10    );
    
       // Remove forum filters in single member activity streams
       remove_action( 'bp_member_activity_filter_options', array( bbpress()->extend->buddypress->activity , 'activity_filter_options'   ), 10   ); 
    
       // Remove forum filters in single group activity streams
       remove_action( 'bp_group_activity_filter_options',  array( bbpress()->extend->buddypress->activity , 'activity_filter_options'   ), 10   );
    }
    add_action( 'bp_init', 'bpfr_remove_activity_dropdown_label', 8 );

    Works also by using bp_actions hook.

    #255182

    In reply to: Installed. Now, what?

    r-a-y
    Keymaster

    If you want to use forums, you should use bbPress instead.

    bbPress = forums plugin
    BuddyPress = community plugin (member profiles, user groups, private messaging, notifications)

    You can use both, but if a forum is all you need, then use bbPress.

    I personally am not sure why you would move from phpBB. Installing WordPress just to use a WordPress forum plugin is not the best way to go about things unless you need to blog and use specific WordPress functionality on your site.

    #255180
    danbp
    Participant

    You should READ the error msg when you see one ! The plugin who generated the error is mentionned in it…
    The support forum is here: https://fr.wordpress.org/plugins/bp-xprofile-wp-user-sync/

    #255167
    shoreshotweb
    Participant

    I don’t see it in the list of forums. Can you please send me a link?

    #255160
    sharmavishal
    Participant

    Raise this issue at XProfile WP User Sync support forum’s

    #255159
    sharmavishal
    Participant

    Best asked at redistrict pro forum’s

    #255156
    hosam020
    Participant

    @shanebp Thank you for the kindly reply
    Yes i am using it.
    i think you mean i have to call this action in theme funcation ourside the bp localfile.

    unction bbp_trash_topic( $topic_id = 0 ) {
    
    	// Validate topic ID
    	$topic_id = bbp_get_topic_id( $topic_id );
    
    	if ( empty( $topic_id ) || !bbp_is_topic( $topic_id ) )
    		return false;
    
    		$args = array(
    		'user_id'           => 386,
    		'item_id'           => $topic_id,
    		'secondary_item_id' => 0,
    		'component_name'    => 'forums',
    		'component_action'  => 'new_topic',
    		);
    	
    	bp_notifications_delete_notifications_by_item_id( $args );
    
    	do_action( 'bbp_trash_topic', $topic_id );

    Please ignore the args param just added a notification param to see if will delete it
    but never happend
    Sorry for my bad english i hope u understand me.

    #255093
    syborg
    Participant

    I posted a topic on the Buddypress Cover Photo support forum, on wordpress.org. (Same authors as KLEO theme and support forum so easier to access). Bye !

    #255063
    syborg
    Participant

    Hello, I had exactly the same problem, with the theme “KLEO” (seventhqueen).

    If it can helps someone, the problem was caused by the plugin “Buddypress Cover Photo”. I fixed it by changing the first line in the file /plugins/buddypress-cover-photo/group-cover.php :

    if ( class_exists( 'BP_Group_Extension' ) ) :

    by

    if ( class_exists( 'BP_Group_Extension' ) && bp_is_active('groups') ) :

    (It’s my first post on this forum, so I wanted to say that Buddypress is a great plugin, good work guys !)

    #255059
    danbp
    Participant

    Since 2.1, the option dropdown is no more hardcoded in the template but is generated dynamically.

    I’m unable actually to tell you how to modify this new behave. (The old method is explained on the codex and in many topics here).

    On Codex, if you have a serious php level (it’s not exactly my case), it’s explained how to add a new option. I guess there is a way to do the inverse, but i read a lot and tried many things, but didn’t find any working solution.

    Meanwhile, i opened a topic on bbPress forum.

    I tried this after asking @imath but it doesn’t work (i use bbp 2.6 alpha on my test site)

    function remove_activity_filters( $bbp_buddypress = null ) {
    	 if ( bp_is_active( 'activity' ) && bp_is_activity_component() ) {
    		 // Remove forum filters in site wide activity streams
    		 remove_action( 'bp_activity_filter_options',        array( bbpress()->extend->buddypress->activity, 'activity_filter_options'   ), 10    );
    	}
    }
    add_action( 'bbp_buddypress_loaded', 'remove_activity_filters' );
    

    In case of one of you have an idea: @shanebp, @henrywright, @r-a-y, @djpaul ?
    Merci beaucoup !

    danbp
    Participant

    Many topics about this question are already on the forum. You can also read here to get an idea.

    Jon Fergus
    Participant

    Anyone have any luck with this one? I’m trying to find a way to set a featured image that will work as the og:image for groups. Having no luck figuring it out yet.

    Also, I was able to add the ability to include a featured image for a forum, but the featured image I set isn’t showing up as the og:image in the facebook debugger. See here where I posted about it in the bbpress forum. Not sure if this glitch is because my forum is within a buddypress group…?? If anyone has a clue how to do this, please share.

    #254922
    lemantico
    Participant

    hi danbp,
    thanx a lot for your quick reply! Meanwhile I figured it out, while browsing help videos on youtube! The description on your site is a kind of jumpy and maybe that’s why it confused me. Anyway, finally I got BuddyPress up and running now (incl. Chat & Forum), and I kinda like it, how easy the setup really was! Thank you again for your help! God bless you, mate!

    Best regards!

    #254870
    danbp
    Participant

    How do I do this?

    You have to bake 5 894 pizza and search the forum ! Or experiment the following…

    First you remove the counter. This can be done by using the language file.
    Original string is Friends <span class="%s">%s</span> to replace by eg. Friends

    or using this function (add to bp-custom.php)

    function bpfr_remove_friends_count( $translated, $original_text, $domain ) {
    		
    	if ( 'buddypress' !== $domain )  
    	return $translated; 
    	
    	switch ( $original_text ) {
    		
    		case 'Friends <span class="%s">%s</span>':
    		return 'Friends';
    		
    		default:
    		return $translated;
    	}
    }
    add_filter( 'gettext', 'bpfr_remove_friends_count', 10, 3 );

    The Friends subnav has only two elements: friendships and request.
    Friendships is the default one and can’t be removed. So we have to hide it with css. Add this to your child-theme style.css

    #friends-my-friends-personal-li {display:none;}

    This is default css, and you have to check it as it can vary depending your theme.

    Finally add a new subnav item with counter in replaciement of the one you’ve just hiden (add to bp-custom.php).

    function bpfr_custom_profile_sub_nav() {
    global $bp;
    
    	if( bp_is_active( 'friends' ) )
    
    	$count    = friends_get_total_friend_count();
    	$class    = ( 0 === $count ) ? 'no-count' : 'count';
    	
    	//Add subnav item 	 
    	bp_core_new_subnav_item( array(
    		'name' => sprintf( __( 'Friendships <span class="%s">%s</span>', 'buddypress' ), esc_attr( $class ), bp_core_number_format( $count ) ),			
    		'slug'            => 'friends',
    		'parent_url'      => $bp->loggedin_user->domain,
    		'parent_slug'     => $bp->friends->slug,
    		'screen_function' => 'friends_screen_my_friends',
    		'position' => 10
    		)
    	);	
    }
    add_action( 'bp_setup_nav', 'bpfr_custom_profile_sub_nav' ); 
    #254865
    danbp
    Participant

    Hi @lemantico,
    please use the correct publishing tool when you insert links to post. You can add a screenshot here, but it must be stored on a external site. For that, use <img> button and insert the URL of the picture.

    Also, don’t use Google’s search result URL witch is stripped, but the canonical one.

    1) Installing a network locally is a bit more complex as a regular install. It depends first on how you setup your local server and the OS you use.

    You tell about bbPress, are you sure of this ? It’s only a forum plugin and has nothing to do with network setup. And you’re here on the BuddyPress forum!

    If the codex didn’t helped you, maybe this tutorial can.

    Sorry to not help more, but it’s not possible to rewrite here what is already written on WordPress & BuddyPress codex.

    #254846
    danbp
    Participant

    @c02capo get the answer directly on plugin forum !

    sharmavishal
    Participant

    best asked at Group Tags plugin support forums

    #254806
    danbp
    Participant

    Hi @littlemisslanna,

    Yep, but you have better to ask how to do that on Gravity Form support forum. We can help you here for BuddyPress usage, not for third party implementation. Sorry ! 😉

    #254737

    In reply to: global avatar

    danbp
    Participant

    Several topics are related to your question on the forum.

    https://buddypress.org/support/search/bp_core_fetch_avatar/

    danbp
    Participant

    That’s a question better to ask on BP Registration support forum.

    sharmavishal
    Participant

    got it ray

    /wp-includes/functions.php on line 3897
    BP_Event_Organiser_Group_ExtensionBP_WiseChat_Group_ExtensionRTMediaGroupExtensionBBP_Forums_Group_Extension

    sharmavishal
    Participant

    dont think so

    this is the site

    kindly delete the site name from this forums after u had a look at it…..

    if you want can pass on admin credentials for u to test/check

    r-a-y
    Keymaster

    @sharmavishal – Do you see anything printed in the browser when the fatal error occurs?

    Something like:
    BP_Groupblog_ExtensionBBP_Forums_Group_Extension?

    #254645
    danbp
    Participant

    @sjoerdlagraauw,

    out of the box, i have no idea. Something is apparently called to early. It’s difficult to say “what”. Have you tested with a Twenty theme ?
    Maybe check also all your js file version, ensure also the’re unique. If you find two with diff. version #, remove the oldest…

    Search also on forum for missing @mention or @mention not working….

    That’s even debuging… you have to search long and hard. 😉

Viewing 25 results - 1,626 through 1,650 (of 20,260 total)
Skip to toolbar