Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,051 through 5,075 (of 69,042 total)
  • Author
    Search Results
  • #304213

    In reply to: Wrong template display

    beat sk
    Participant

    Oh, maybe the creation of buddypress in shortcode would solve many problems. :/

    #304212
    Venutius
    Moderator

    I’d try reinstalling the BP emails ( admin>>Tools>>BuddyPress ).

    #304211
    Venutius
    Moderator

    Typically the way to do this would be to overload the members page (buddypress/bp-template/bp-theme/members/members-loop.php) and at your code to display the field excerpt.

    #304210

    In reply to: Wrong template display

    Venutius
    Moderator

    There’s quite a few shortcodes available for BuddyPress but I don’t thank all of them together would allow you to recreate the BuddyPress pages.

    #304209

    In reply to: Wrong template display

    beat sk
    Participant

    Hello again. I want to know if there a chance to make site with buddypress in shortcodes? I saw, buddypress working standalone, but theme creator not answering and the only way to solve this, is by using shortcodes in wpbakery page builder.

    #304204
    gmbyrom
    Participant

    Hi all

    My site isn’t sending emails for Buddypress actions such as use of @mentions, group join request accepts/rejects, PMs, etc. as it should.

    I’m using the WP Mail SMTP plugin, and sending a test email works correctly and is received. I’ve also done the same with the Check Email plugin and it works correctly. Contact forms also work correctly, sending email to myself.

    So email is configured correctly on the server and is working, but none of the emails in the “emails” page ever get sent to any of the site users.

    How can I fix it? TIA.

    #304200
    mongol7
    Participant

    wordpress : 5.1.1
    buddypress : 4.2.0

    Hello,
    I am in charge of a site that uses wordpress, and buddypress. When someone receives a message, the old ones appear at the top and the recent at the bottom. When the page contains several messages, you lose time scrolling down the page each time before reading the most recent message. Is there a way to change the order of messages please? Thank you in advance.

    cordially

    #304198
    shanebp
    Moderator
    #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

Viewing 25 results - 5,051 through 5,075 (of 69,042 total)
Skip to toolbar