Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,076 through 5,100 (of 68,946 total)
  • Author
    Search Results
  • #304191

    In reply to: Avatar image

    ingerazur39
    Participant

    Howdy
    I’m trying to make a social networking for a radio station I do not know css html or php when I install wordpress in english and install buddypress all goes well but when i install it in romanian then buddypress nouveau turns in buddypress medern template and with it selected I’m giving this error to the profile page of each member <span class = “count”> 2 </ span> friend 2

    #304180
    Venutius
    Moderator

    Yes this issue has been reported:

    https://buddypress.trac.wordpress.org/ticket/8067

    #304176
    pandraka
    Participant

    I think this a bigger issue. I just removed my tabs, and went with the default groups, my groups and create. the my groups options displays all the groups too. This seems to be an bug with buddypress.

    #304175
    pandraka
    Participant

    @danbp Thank you for the tutorial. My group tabs worked perfectly until the last update of BuddyPress. Now the first time the page is loaded the tab displayed is correct. But If I switch tabs then all my tabs show all the groups. I am at a loss. Any ideas?

    #304174
    tommuka
    Participant

    Hello Guys.
    I need your help I’m building a new e-commerce web shop in WordPress and I found BuddyPress which should be great for us website I’m able to create like two different accounts for example one like a normal customer who will go through the portal and he can choose what he wants to buy and the second one like a professional buyer who can Connect or if I can say to link with another account and he can manage them something like a membership and he can shop through their accounts. I’m trying to find this solution in BuddyPress but I couldn’t find the way how to manage a people in my group and shop through them. Manage I mean edit their billing addresses and all this things PLEASE CAN YOU HELP ME WITH THAT I will pay for that but I really need help

    #304159
    Venutius
    Moderator

    @demon19851027 asked:

    Hello! I’m from Russia and don’t know English. I use a translator.

    The bottom line is:
    Tell me how to set your logo (picture) in BuddyPress letters?

    #304102
    Venutius
    Moderator

    The limitations of BuddyPress are really the limitations of WordPRess and your host. If you think WordPress.com is run on WordPress you can see that scaling is possible, but that you’d probably need to do extensive customisations. File upload size is a server setting.

    #304097
    Venutius
    Moderator

    First of all, I got the filename wrong, it’s home.php you need to edit.

    This should be about the easiest bit of php you can get. But you will need to get ftp access to your site then create a buddypress/members/single directory in your themes/childtheme directory. Then take a copy of the source home.php file.

    Home.php creates the basic content for the profile page and if you open it up you will see a section as follows:

    		<?php if ( ! bp_nouveau_is_object_nav_in_sidebar() ) : ?>
    
    			<?php bp_get_template_part( 'members/single/parts/item-nav' ); ?>
    
    		<?php endif; ?>

    This is what calls the navigation, at the moment it’s the second item being loaded, you want it to be the first, so you just need to move it as follows:

    ?>
    		<?php if ( ! bp_nouveau_is_object_nav_in_sidebar() ) : ?>
    
    			<?php bp_get_template_part( 'members/single/parts/item-nav' ); ?>
    
    		<?php endif; ?>
    
    	<?php bp_nouveau_member_hook( 'before', 'home_content' ); ?>
    
    	<div id="item-header" role="complementary" data-bp-item-id="<?php echo esc_attr( bp_displayed_user_id() ); ?>" data-bp-item-component="members" class="users-header single-headers">
    
    		<?php bp_nouveau_member_header_template_part(); ?>
    
    	</div><!-- #item-header -->
    
    	<div class="bp-wrap">
    
    		<div id="item-body" class="item-body">
    
    			<?php bp_nouveau_member_template_part(); ?>
    
    		</div><!-- #item-body -->
    	</div><!-- // .bp-wrap -->
    
    	<?php bp_nouveau_member_hook( 'after', 'home_content' ); ?>
    

    Once you’ve done that use ftp to copy your updated file to themes/child-theme/buddypress/members/single/home.php and test. that should do it.

    #304093

    In reply to: Avatar image

    biberkopf
    Participant

    I had the same problem. I disabled WP User Avatar which solved the problem.

    This plugin is apparently not compatiple with BuddyPress. The FAQ for the plugin says:

    Will WP User Avatar work with BuddyPress?
    No, BuddyPress has its own custom avatar functions and WP User Avatar will override only some of them. It’s best to use BuddyPress without WP User Avatar.

    #304087
    Venutius
    Moderator

    You should be able to do that by overloading plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/single/profile.php, you can place your modified copy in themes/child-theme/buddypress/members/single/profile.php.

    #304082
    account39
    Participant

    I’m using 5.1.1 in WordPress and latest Buddypress version (Nouveau template). It is currently in a subdomain (sandbox) for now. I’m also using a child theme to make adjustments. I would like to move the navigation on all pages to ABOVE the the cover image/avatar. Or just move the coverimage/avatar to below the navigation. Is this an easy adjustment?

    forgot the link – https://testing.leveledproduction.com/

    Side note – Buddypress is impressive.

    #304079

    In reply to: Disable scroll top

    Venutius
    Moderator

    Hi there, WordPress and BuddyPress are predominately PHP applications. PHP requires a page load in order to view new content and this is what you are seeing – you click a menu item a new page loads and it starts from the top of the page again. There are tricks to bring the page focus back to where you were and BP uses these where appropriate, another trick is to use Javescript to fetch now content and again BP uses this, in the activity page for example. But when you are clicking a main link, an entire now page is going to be loaded to there’s not a reference of where you were in order to set the new page focus. So in short, it’s the way WordPress and BuddyPress have been written, yu’d need to do a significant rewrite to change it.

    Raakesh
    Participant

    Hello @Venutius,

    I’ve checked Buddypress options it shows Buddypress Legacy template.

    Please find below the snap shot.

    Bptheme

    #304071

    In reply to: Sub-menu orientation

    jennifersanchez
    Participant

    Hello! In the theme that I have installed I can only use Legacy Buddypress, is there any code where I can modify it? or css?
    Thank you very much for the response!

    #304068
    Venutius
    Moderator

    Deactivate all other plugins apart from BuddyPress and see if it works.

    Venutius
    Moderator

    You can see which BP Theme you are using by going to Settings>>BuddyPress>>Options

    #304066

    In reply to: Sub-menu orientation

    Venutius
    Moderator

    Have you looked at the BP Nouveau theme (Settings>>BuddyPress>>Options ) this allows you to set up vertical menus in Customizer.

    Achim
    Participant

    Found a solution:

    replaced line 61
    in /wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/groups/single/cover-image-header.php

    <?php bp_group_description(); ?>

    by

    <?php bp_nouveau_group_description_excerpt(); ?>

    #304056
    andhi1
    Participant

    I do not know what you mean by your question. I use BuddyPress options for members profile

    Se video:

    #304055
    Venutius
    Moderator

    Hi andhi,

    Are you able to crop with just BuddyPress loaded and with a default theme such as 2017?

    #304015
    metalhead
    Participant

    Thanks for sharing your solution. Shortening the filename worked for me too.

    I’m going to search Buddypress Trac and see if the authors are aware of it. I’ll report it if it’s not in there.

    #303994
    shanebp
    Moderator

    You’ll need to use this filter:
    apply_filters( 'bp_core_get_suggestions', $retval, $args );

    For more info, find that filter in this file:
    ...wp-content\plugins\buddypress\bp-core\bp-core-functions.php

    How you retrieve the ‘denied’ users will depend on how they are handled by the other code or plugins.
    If you do not know how to get an array of the denied user ids, you should ask the creators of that other code or plugins.

    Venutius
    Moderator

    Have you deactivated user creation of groups in Settings>>BuddyPress>>Options?

    #303987
    shanebp
    Moderator

    Right now I can see it pointing to https://hagdahlseniorcenter.com/register but there’s no registration form there, the plugin should provide some way to add it”

    Did you follow the instructions on how to set up a register page?

    Register and Activation Pages

Viewing 25 results - 5,076 through 5,100 (of 68,946 total)
Skip to toolbar