Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: Field for iframe #42837

    Hi,
    Thank you for purchasing from us.

    At the moment, we have escaped all field types and this may not work. Please allow us 2 days and I will add a html as well embed field(for iframe).

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: export data of users within a specific group #42836

    Hi,
    Thank you for the question.
    I had a look at that plugin.

    It does not offer a hook to allow filtering the users list as custom user ids.

    You can still override that plugin’s get_user_id_list() and return the group member count(there is a flag) and the group member ids and it will export for that specific group.

    Are you comfortable with php? I am not seeing a ready to use solution currently.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: [Resolved] homepage activity #42835

    Hi,
    I am sorry, for the delay.

    Please add the following to your Additional Styles Section(Dashboard->Appearance->Customize->Additional Styles)

    
    
    .sticky-header {
    	
    	position:relative;
    	top: 0;
    }
    
    

    That will disable the fixed header.

    For the forum page, Please add the following php code (you can use any code snippet manager plugin)

    
    
    /**
     * Make the forums page single column in Community Builder Theme.
     */
    add_filter( 'cb_page_layout', function ( $layout ) {
    
    	// BuddyPress or bbPress is not active.
    	if ( ! function_exists( 'bp_is_user' ) || ! function_exists( 'is_bbpress' ) ) {
    		return $layout;
    	}
    
    	//makr bbPress pages as single column.
    	if (  is_bbpress() && ! bp_is_user() ) {
    		$layout = 'page-single-col';
    	}
    
    	return $layout;
    } );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25392

    Hi Issam,
    Thank you.
    I will be looking at it within next 2 days and getting back to you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392

    Hi Simon,
    Thank you

    You may be able to remove nav items using cusotm code.
    Please have a look at the following topic for examples.

    https://buddydev.com/support/forums/topic/hide-nav-item-function-only-works-for-core-bp-items

    https://buddydev.com/support/forums/topic/hide-tabs-and-profile-for-custom-roles/

    The plugin, BuddyPress User profile Tabs Creator does allow you to remove by roles. It does not support member types currently.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392

    Hi Rob,
    I had a look at your site and I am not seeing TinyMCE on the forum posts.

    The theme or even bbPress doe snot provide TinMCE support (bbPress does support a few bb codes if you have the setting “Add toolbar & buttons to textareas to help with HTML formatting” enabled.).

    Were you using anything custom to enable tinyMCE(I can see that in your screenshot).

    I will suggest using either the cusotm bb codes that you are using or TinyMCE not both as the author of bb code says they may not be compatible.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392

    Hi Chris,
    Please see my reply to your post here
    https://buddydev.com/support/forums/topic/unlimited-storage/#post-42805

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392
    Brajesh Singh on in reply to: Unlimited Storage #42805

    Hi Chris,
    Thank you for using the plugin.

    I am sorry, there is no way to remove the limit completely as there is always the limits on resources a server can offer and in normal circumstances, we expect admins needing to limit the use.

    Still, You can set a very high limit (say 20 TB) and then disable the message that sows the quota from the settings. That should solve it partially.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25392

    Hi Issa,
    I had another look at your video
    https://screencast-o-matic.com/watch/crf3XvVejjX

    1. The user is registering on the sub site
    2. You are testing their profile on main site

    The problem is, if a user registers on the sub site, their profile will have data on sub site. They won’t have any data on your main site. This is the expected behaviour.

    can you please visit the profile on sub site and confirm that the data is not visible?

    Regards
    Brajesh