Search Results for 'buddypress'
-
AuthorSearch Results
-
April 1, 2019 at 6:27 am #304209
In reply to: Wrong template display
beat sk
ParticipantHello 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.
April 1, 2019 at 1:39 am #304204Topic: Buddypress emails not being sent
in forum How-to & Troubleshootinggmbyrom
ParticipantHi 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.
March 30, 2019 at 11:39 pm #304198In reply to: Change activation email content
shanebp
ModeratorDid you try this: https://codex.buddypress.org/emails/#filter-from-address-and-name
March 30, 2019 at 9:00 am #304191In reply to: Avatar image
ingerazur39
ParticipantHowdy
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 2March 29, 2019 at 3:37 pm #304180In reply to: Group Types option display
Venutius
ModeratorYes this issue has been reported:
March 29, 2019 at 3:01 pm #304176In reply to: Group Types option display
pandraka
ParticipantI 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.
March 29, 2019 at 2:42 pm #304175In reply to: Group Types option display
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?
March 28, 2019 at 12:11 pm #304102In reply to: Limitations of Buddypress
Venutius
ModeratorThe 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.
March 28, 2019 at 5:57 am #304097In reply to: move nav menu ABOVE cover image
Venutius
ModeratorFirst 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.
March 28, 2019 at 12:21 am #304093In reply to: Avatar image
biberkopf
ParticipantI 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.March 27, 2019 at 9:28 pm #304087In reply to: move nav menu ABOVE cover image
Venutius
ModeratorYou 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.
March 27, 2019 at 6:50 pm #304082Topic: move nav menu ABOVE cover image
in forum How-to & Troubleshootingaccount39
ParticipantI’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.
March 27, 2019 at 4:42 pm #304079In reply to: Disable scroll top
Venutius
ModeratorHi 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.
March 27, 2019 at 1:25 pm #304073Raakesh
ParticipantHello @Venutius,
I’ve checked Buddypress options it shows Buddypress Legacy template.
Please find below the snap shot.
March 27, 2019 at 11:19 am #304071In reply to: Sub-menu orientation
jennifersanchez
ParticipantHello! 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!March 27, 2019 at 7:31 am #304068In reply to: I cant change the profile picture
Venutius
ModeratorDeactivate all other plugins apart from BuddyPress and see if it works.
March 27, 2019 at 7:29 am #304067Venutius
ModeratorYou can see which BP Theme you are using by going to Settings>>BuddyPress>>Options
March 27, 2019 at 7:28 am #304066In reply to: Sub-menu orientation
Venutius
ModeratorHave you looked at the BP Nouveau theme (Settings>>BuddyPress>>Options ) this allows you to set up vertical menus in Customizer.
March 26, 2019 at 11:17 pm #304061Achim
ParticipantFound 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(); ?>
March 26, 2019 at 6:33 pm #304056In reply to: I cant change the profile picture
andhi1
ParticipantI do not know what you mean by your question. I use BuddyPress options for members profile
March 26, 2019 at 6:12 pm #304055In reply to: I cant change the profile picture
Venutius
ModeratorHi andhi,
Are you able to crop with just BuddyPress loaded and with a default theme such as 2017?
March 26, 2019 at 4:56 pm #304015In reply to: There was a problem cropping your profile photo.
metalhead
ParticipantThanks 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.
March 26, 2019 at 12:02 pm #303994In reply to: Activity page tag options
shanebp
ModeratorYou’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.phpHow 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.March 26, 2019 at 6:20 am #303990Venutius
ModeratorHave you deactivated user creation of groups in Settings>>BuddyPress>>Options?
March 25, 2019 at 9:58 pm #303987In reply to: how can visitors register to my site
shanebp
ModeratorRight 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?
-
AuthorSearch Results